
         /* Base styles */
         .slider-container { 
         background-image: url("assets/casestudybg.jpg");
         background-size: 100% 100%;
         background-repeat: no-repeat;
         position: relative;
         width: 100%;
         height: 100%;
         padding-top: 10%;
         padding-bottom: 10%;
         overflow: hidden;
         }
         .slider {
         display: flex;
         transition: transform 1s ease-in-out;
         }
         .slide {
         min-width: 100%;
         height: 100%;
         box-sizing: border-box;
         }
         .controls {
         position: absolute;
         top: 50%;
         width: 99%;
         display: flex;
         justify-content: space-between;
         pointer-events: none;
         color: whitesmoke;
         }
         .control {
         cursor: pointer;
         pointer-events: auto;
         }
         /* Typography */
         .card-front__heading {
         font-size: 1.5rem;
         margin-top: .25rem;
         }
         .inside-page__heading { 
         width: 100%;
         }
         .inside-page__heading,
         .card-front__text-view {
         font-size: 1.3rem;
         font-weight: 800;
         margin-top: .2rem;
         }
         .inside-page__heading--city,
         .card-front__text-view--city { color: #224e26; }
         .inside-page__heading--ski,
         .card-front__text-view--ski { color: #2aaac1; }
         .inside-page__heading--beach,
         .card-front__text-view--beach { color: #fa7f67; }   
         .inside-page__heading--camping,
         .card-front__text-view--camping { color: #00b97c; }
         .card-front__tp { color: #fafbfa; }
         .card-front__text-price {
         font-size: 1.2rem;
         margin-top: -.2rem;
         }
         .inside-page__text {
         color: #000;
         font-size: 13px;
         line-height: 1.5;
         padding: 12px;
         }
         /* Icons */
         .card-front__icon {
         fill: #fafbfa;
         font-size: 3vw;
         height: 3.25rem;
         margin-top: -.5rem;
         width: 3.25rem;
         }
         /* Buttons */
         .inside-page__btn {
         background-color: transparent;
         border: 3px solid;
         border-radius: .5rem;
         font-size: 1.2rem;
         font-weight: 600;
         margin-top: 2rem;
         overflow: hidden;
         padding: .7rem .75rem;
         position: relative;
         text-decoration: none;
         transition: all .3s ease;
         width: 90%;
         z-index: 10;
         }
         .inside-page__btn::before { 
         content: "";
         height: 100%;
         left: 0;
         position: absolute;
         top: 0;
         transform: scaleY(0);
         transition: all .3s ease;
         width: 100%;
         z-index: -1;
         }
         .inside-page__btn--city { 
         border-color: #ff40a1;
         color: #ff40a1;
         }
         .inside-page__btn--city::before { 
         background-color: #ff40a1;
         }
         .inside-page__btn--ski { 
         border-color: #279eb2;
         color: #279eb2;
         }
         .inside-page__btn--ski::before { 
         background-color: #279eb2;
         }
         .inside-page__btn--beach { 
         border-color: #fa7f67;
         color: #fa7f67;
         }
         .inside-page__btn--beach::before { 
         background-color: #fa7f67;
         }
         .inside-page__btn--camping { 
         border-color: #00b97d;
         color: #00b97d;
         }
         .inside-page__btn--camping::before { 
         background-color: #00b97d;
         }
         .inside-page__btn:hover { 
         color: #fafbfa;
         }
         .inside-page__btn:hover::before { 
         transform: scaleY(1);
         }
         /* Layout Structure */
         .main {
         display: flex;
         flex-direction: column;
         justify-content: center;
         height: 100%;
         width: 100%;
         }
         /* Container to hold all cards - Responsive */
         .card-area {
         align-items: center;
         display: flex;
         flex-wrap: wrap;
         height: auto;
         justify-content: center;
         padding: 1rem;
         gap: 2rem;
         }
         /* Card Section - Responsive */
         .card-section {
         align-items: center;
         display: flex;
         height: auto;
         justify-content: center;
         width: auto;
         margin: 1rem;
         }
         /* Card - Responsive sizing */
         .card {
         background-color: rgba(0,0,0, .05);
         box-shadow: -.1rem 1.7rem 6.6rem -3.2rem rgba(0,0,0,0.5);
         height: 20rem;
         position: relative;
         transition: all 1s ease;
         width: 15rem;
         min-width: 15rem;
         flex-shrink: 0;
         }
         /* Flip card */
         .flip-card {
         height: 20rem;
         /* perspective: 100rem;*/
         position: absolute;
         right: 0;
         transition: all 1s ease;
         visibility: hidden;
         width: 15rem;
         z-index: 100;
         }
         .flip-card > * {
         visibility: visible;
         }
         .flip-card__container {
         height: 100%;
         position: absolute;
         right: 0;
         transform-origin: left;
         transform-style: preserve-3d;
         transition: all 1s ease;
         width: 100%;
         }
         .card-front,
         .card-back {
         border-right: 3px solid rgb(70, 70, 70);
         backface-visibility: hidden;
         height: 100%;
         left: 0;
         position: absolute;
         top: 0;
         width: 100%;
         }
         .card-front {
         background-color: #fafbfa;
         height: 20rem;
         width: 15rem;
         }
         .card-front__tp {
         align-items: center;
         clip-path: polygon(0 0, 100% 0, 100% 90%, 57% 90%, 50% 100%, 43% 90%, 0 90%);
         display: flex;
         flex-direction: column;
         height: 12rem;
         justify-content: center;
         padding: .75rem;
         }
         .card-front__tp--city {
         background: linear-gradient(to bottom, #ff73b9, #ff40a1);
         }
         .card-front__tp--ski {
         background: linear-gradient(to bottom, #47c2d7, #279eb2);
         }
         .card-front__tp--beach {
         background: linear-gradient(to bottom, #fb9b88, #f86647);
         }
         .card-front__tp--camping {
         background: linear-gradient(to bottom, #00db93, #00b97d);
         }
         .card-front__tp--campings {
         background: linear-gradient(to bottom, #49ff6b, #8ad57b);
         }
         .card-front__bt {
         align-items: center;
         display: flex;
         justify-content: center;
         }
         .card-back {
         background-color: #fafbfa;
         transform: rotateY(180deg);
         }
         .video__container {
         height: auto;
         min-height: 100%;
         object-fit: cover;
         width: 100%;
         }
         .inside-page {
         background-color: #fafbfa;
         box-shadow: inset 20rem 0px 5rem -2.5rem rgba(0,0,0,0.25);
         height: 100%;
         position: absolute;
         right: 0;
         transition: all 1s ease;
         width: 15rem;
         z-index: 1;
         }
         .inside-page__container {
         align-items: center;
         display: flex;
         flex-direction: column;
         height: 100%;
         text-align: center; 
         width: 100%;
         }
         /* Hover Effects - Responsive */
         .card:hover {
         box-shadow: -.1rem 1.7rem 6.6rem -3.2rem rgba(0,0,0,0.75);
         width: 30rem;
         }
         .card:hover .flip-card__container {
         transform: rotateY(-180deg);
         }
         .card:hover .inside-page {
         box-shadow: inset 1rem 0px 5rem -2.5rem rgba(0,0,0,0.1);
         }
         /* Footer */
         .footer {
         background-color: #333;
         margin-top: 3rem;
         padding: 1rem 0;
         width: 100%;
         }
         .footer-text {
         color: #fff;
         font-size: 1.2rem;
         text-align: center;
         }
         #header-carousel video {
         width: 100%;
         height: auto;
         object-fit: cover;
         }
         #header-carousel .carousel-item {
         position: relative;
         height: 100vh;
         min-height: 500px;
         overflow: hidden;
         }
         #header-carousel .carousel-caption {
         position: absolute;
         top: 40%;
         transform: translateY(-50%);
         bottom: auto;
         left: 0;
         right: 0;
         text-align: left;
         padding: 0 15px;
         z-index: 2;
         }
         /* RESPONSIVE DESIGN - Mobile First Approach */
         /* Mobile Touch Support - Add this class via JavaScript */
         .card.mobile-active,
         .card.card-opened {
         width: 28rem !important;
         max-width: calc(100vw - 2rem);
         }
         .card.mobile-active .flip-card__container,
         .card.card-opened .flip-card__container {
         transform: rotateY(-180deg) !important;
         }
         .card.mobile-active .inside-page,
         .card.card-opened .inside-page {
         box-shadow: inset 1rem 0px 5rem -2.5rem rgba(0,0,0,0.1) !important;
         }
         /* Extra Small Devices (phones, less than 576px) */
         @media (max-width: 575.98px) {
         .card-area {
         flex-direction: column;
         padding: 0.5rem;
         gap: 1rem;
         }
         .card-section {
         width: 100%;
         margin: 0.5rem 0;
         }
         .card {
         width: 14rem;
         height: 18rem;
         min-width: 14rem;
         cursor: pointer;
         }
         .flip-card {
         width: 14rem;
         height: 18rem;
         }
         .card-front {
         width: 14rem;
         height: 18rem;
         }
         .inside-page {
         width: 14rem;
         }
         .card-front__tp {
         height: 10rem;
         padding: 0.5rem;
         }
         .card-front__heading {
         font-size: 1.2rem;
         }
         .inside-page__heading,
         .card-front__text-view {
         font-size: 1.1rem;
         }
         .inside-page__btn {
         font-size: 1rem;
         padding: 0.5rem 0.6rem;
         }
         .card-front__icon {
         height: 2.5rem;
         width: 2.5rem;
         }
         /* Mobile specific card opening */
         .card.mobile-active,
         .card.card-opened {
         width: calc(100vw - 1rem) !important;
         max-width: 26rem !important;
         }
         /* Disable default hover on mobile */
         .card:hover {
         width: 14rem;
         transform: none;
         }
         .card:hover .flip-card__container {
         transform: none;
         }
         .card:hover .inside-page {
         box-shadow: inset 20rem 0px 5rem -2.5rem rgba(0,0,0,0.25);
         }
         /* Add touch feedback */
         .card:active {
         transform: scale(0.98);
         }
         #header-carousel h1 {
         font-size: 1.5rem;
         }
         #header-carousel p.fs-5 {
         font-size: 0.9rem;
         }
         }
         /* Small Devices (landscape phones, 576px and up) */
         @media (min-width: 576px) and (max-width: 767.98px) {
         .card-area {
         flex-wrap: wrap;
         justify-content: center;
         gap: 1.5rem;
         padding: 1rem;
         }
         .card-section {
         width: calc(50% - 1rem);
         margin: 0.5rem;
         }
         .card {
         width: 14rem;
         height: 19rem;
         }
         .flip-card {
         width: 14rem;
         height: 19rem;
         }
         .card-front {
         width: 14rem;
         height: 19rem;
         }
         .inside-page {
         width: 14rem;
         }
         .card:hover {
         width: 26rem;
         }
         }
         /* Medium Devices (tablets, 768px and up) */
         @media (min-width: 768px) and (max-width: 991.98px) {
         .card-area {
         flex-wrap: wrap;
         justify-content: center;
         gap: 2rem;
         }
         .card-section {
         width: calc(50% - 2rem);
         margin: 1rem;
         }
         .card {
         width: 15rem;
         height: 20rem;
         }
         .card:hover {
         width: 28rem;
         }
         #header-carousel h1 {
         font-size: 1.75rem;
         }
         #header-carousel p.fs-5 {
         font-size: 1rem;
         }
         .btn {
         padding: 0.5rem 1rem;
         font-size: 0.9rem;
         }
         }
         /* Large Devices (desktops, 992px and up) */
         @media (min-width: 992px) and (max-width: 1199.98px) {
         .card-area {
         flex-wrap: wrap;
         justify-content: center;
         gap: 2rem;
         }
         .card-section {
         width: calc(33.33% - 2rem);
         margin: 1rem;
         }
         }
         /* Extra Large Devices (large desktops, 1200px and up) */
         @media (min-width: 1200px) {
         .card-area {
         flex-wrap: wrap;
         justify-content: center;
         gap: 2rem;
         }
         .card-section {
         width: calc(25% - 2rem);
         margin: 1rem;
         max-width: 20rem;
         }
         }
         /* Ultra-wide screens */
         @media (min-width: 1400px) {
         .card-area {
         max-width: 1400px;
         margin: 0 auto;
         }
         }
         /* Landscape orientation adjustments for mobile */
         @media (max-width: 767.98px) and (orientation: landscape) {
         .card-area {
         flex-direction: row;
         flex-wrap: wrap;
         justify-content: center;
         overflow-x: auto;
         padding: 1rem;
         }
         .card-section {
         width: auto;
         flex: 0 0 auto;
         margin: 0 0.5rem;
         }
         .card {
         width: 13rem;
         height: 17rem;
         }
         .flip-card {
         width: 13rem;
         height: 17rem;
         }
         .card-front {
         width: 13rem;
         height: 17rem;
         }
         .inside-page {
         width: 13rem;
         }
         }
         /* High DPI / Retina Display optimizations */
         @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
         .card {
         box-shadow: -.05rem 0.85rem 3.3rem -1.6rem rgba(0,0,0,0.5);
         }
         .card:hover {
         box-shadow: -.05rem 0.85rem 3.3rem -1.6rem rgba(0,0,0,0.75);
         }
         }
         /* Print styles */
         @media print {
         .card-area {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
         gap: 1rem;
         }
         .card:hover {
         width: 15rem;
         transform: none;
         }
         .card:hover .flip-card__container {
         transform: none;
         }
         }
         /* Video Background Carousel Styles */
         /* Video Background Container */
         #header-carousel {
         position: relative;
         height: 85vh;
         overflow: hidden;
         }
         .video-background {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         overflow: hidden;
         z-index: 0;
         }
         .video-background video {
         position: absolute;
         top: 50%;
         left: 50%;
         width: 100%;
         height: 100%;
         object-fit: cover; /* ensures full coverage without distortion */
         transform: translate(-50%, -50%);
         pointer-events: none; /* prevents blocking any overlay content */
         }
         /* Video Overlay for Better Text Readability */
         .video-overlay {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: linear-gradient(
         135deg,
         rgba(0, 0, 0, 0.6) 0%,
         rgba(0, 0, 0, 0.4) 50%,
         rgba(0, 0, 0, 0.6) 100%
         );
         z-index: 1;
         }
         /* Carousel Inner Content */
         .carousel-inner {
         position: relative;
         z-index: 2;
         height: 100vh;
         min-height: 700px;
         }
         .carousel-item {
         height: 100vh;
         min-height: 700px;
         position: relative;
         }
         /* Carousel Caption */
         .carousel-caption {
         position: absolute;
         top: 50%;
         left: 0;
         right: 0;
         transform: translateY(-50%);
         padding: 0;
         text-align: left;
         }
         /* Navigation Buttons - Left and Right Side in Middle */
         .carousel-btn-left,
         .carousel-btn-right {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         width: 40px;
         height: 40px;
         background: rgba(255, 255, 255, 0.2);
         backdrop-filter: blur(10px);
         border: 2px solid rgba(255, 255, 255, 0.4);
         border-radius: 50%;
         color: #fff;
         font-size: 16px;
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         transition: all 0.3s ease;
         z-index: 10;
         }
         .carousel-btn-left {
         left: 20px;
         }
         .carousel-btn-right {
         right: 20px;
         }
         .carousel-btn-left:hover,
         .carousel-btn-right:hover {
         background: rgba(255, 255, 255, 0.4);
         transform: translateY(-50%) scale(1.15);
         border-color: rgba(255, 255, 255, 0.6);
         }
         /* Product Badge */
         .product-badge {
         display: inline-block;
         background: rgba(255, 255, 255, 0.2);
         backdrop-filter: blur(10px);
         padding: 8px 20px;
         border-radius: 50px;
         font-size: 12px;
         font-weight: 700;
         text-transform: uppercase;
         letter-spacing: 2px;
         color: #fff;
         margin-bottom: 1rem;
         border: 2px solid rgba(255, 255, 255, 0.3);
         }
         /* Product Image Column */
         .product-image-col {
         display: flex;
         align-items: center;
         justify-content: center;
         }
         /* Product Showcase Image - Fixed Uniform Size */
         .product-showcase-img {
         border-radius: 20px;
         box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
         width: 450px;
         height: 350px;
         object-fit: cover;
         }
         /* Text Styles */
         .carousel-caption h1 {
         font-weight: 700;
         line-height: 1.3;
         text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
         font-size: 1.9rem;
         margin-bottom: 1rem;
         }
         .carousel-caption p {
         text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
         line-height: 1.6;
         opacity: 0.95;
         font-size: 1rem;
         margin-bottom: 1.5rem;
         }
         /* Button Styles */
         .btn-primary {
         font-weight: 600;
         transition: all 0.3s ease;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
         border: none;
         }
         .btn-primary:hover {
         transform: translateY(-3px);
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
         }
         .carousel-caption::before {
         content: "";
         position: absolute;
         inset: 0;
         background-image: 
         linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
         background-size: 40px 40px;
         z-index: 0;
         }
         .product-content-col {
         position: relative;
         z-index: 2;
         background: rgba(0, 0, 0, 0.65);
         padding: 40px;
         border-radius: 20px;
         border-left: 4px solid #0d6efd;
         }
         /* Carousel Indicators */
         .carousel-indicators {
         z-index: 3;
         margin-bottom: 2rem;
         }
         .carousel-indicators button {
         width: 12px;
         height: 12px;
         border-radius: 50%;
         margin: 0 5px;
         background-color: rgba(255, 255, 255, 0.5);
         border: 2px solid rgba(255, 255, 255, 0.8);
         transition: all 0.3s ease;
         }
         .carousel-indicators button.active {
         background-color: #fff;
         transform: scale(1.2);
         }
         /* Responsive Design */
         @media (max-width: 1200px) {
         .product-showcase-img {
         width: 400px;
         height: 320px;
         }
         }
         @media (max-width: 992px) {
         #header-carousel {
         height: auto;
         min-height: 750px;
         }
         .carousel-inner,
         .carousel-item {
         height: auto;
         min-height: 750px;
         }
         .carousel-btn-left {
         left: 15px;
         }
         .carousel-btn-right {
         right: 15px;
         }
         .carousel-btn-left,
         .carousel-btn-right {
         width: 36px;
         height: 36px;
         font-size: 14px;
         }
         .product-content-col {
         margin-bottom: 2rem;
         text-align: center !important;
         }
         .product-showcase-img {
         width: 380px;
         height: 300px;
         }
         .carousel-caption h1 {
         font-size: 1.7rem;
         }
         .carousel-caption p {
         font-size: 0.95rem;
         }
         }
         @media (max-width: 768px) {
         #header-carousel {
         min-height: 700px;
         }
         .carousel-inner,
         .carousel-item {
         min-height: 700px;
         }
         .carousel-btn-left {
         left: 10px;
         }
         .carousel-btn-right {
         right: 10px;
         }
         .carousel-btn-left,
         .carousel-btn-right {
         width: 34px;
         height: 34px;
         font-size: 13px;
         }
         .product-showcase-img {
         width: 340px;
         height: 270px;
         }
         .carousel-caption h1 {
         font-size: 1.5rem;
         }
         .carousel-caption p {
         font-size: 0.9rem;
         }
         .product-badge {
         font-size: 11px;
         padding: 6px 16px;
         }
         .btn-primary {
         font-size: 14px;
         }
         }
         @media (max-width: 576px) {
         #header-carousel {
         min-height: 650px;
         }
         .carousel-inner,
         .carousel-item {
         min-height: 650px;
         }
         .carousel-btn-left {
         left: 8px;
         }
         .carousel-btn-right {
         right: 8px;
         }
         .carousel-btn-left,
         .carousel-btn-right {
         width: 32px;
         height: 32px;
         font-size: 12px;
         }
         .product-showcase-img {
         width: 280px;
         height: 220px;
         }
         .carousel-caption h1 {
         font-size: 1.25rem;
         }
         .carousel-caption p {
         font-size: 0.85rem;
         }
         .carousel-indicators {
         margin-bottom: 1rem;
         }
         .carousel-indicators button {
         width: 10px;
         height: 10px;
         margin: 0 4px;
         }
         }


          .fadeIn { transition: transform 0.6s ease; } 
                     .fadeIn:hover { transform: translateY(-10px); } 
                     /* =========================
                     VIDEO FULL DISPLAY (NO CROP)
                     ========================= */
                     #bolaVideo {
                     width: 100% !important;
                     /*height: 300px !important;*/

                     /* IMPORTANT FIX */
                     object-fit: contain !important;  /* prevents cropping */
                     border-radius: 25px;
                     /* background like image
                     background: #f4f6f9;*/
                     /* spacing inside card */
                     padding: 15px;
                     /* soft shadow */
                     box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                     transition: all 0.4s ease;
                     }

                     /* =========================
                     HOVER EFFECT
                     ========================= */
                     #bolaVideo:hover {
                     transform: translateY(-6px);
                     box-shadow: 0 20px 45px rgba(0,0,0,0.12);
                     }

                     /* =========================
                     RESPONSIVE
                     ========================= */
                     @media (max-width: 991px) {
                     #bolaVideo {
                     height: 240px !important;
                     }
                     }

                     @media (max-width: 576px) {
                     #bolaVideo {
                     height: 200px !important;
                     padding: 10px;
                     }
                     }
                     /* =========================
                     FEATURE LIST CONTAINER
                     ========================= */
                     .ms-4 {
                     width: 100%;
                     }

                     /* =========================
                     FEATURE ITEMS
                     ========================= */
                     .ms-4 p {
                     font-size: 14px;
                     font-weight: 500;
                     color: #2c2c2c;
                     display: flex;
                     align-items: center;
                     margin-bottom: 12px;
                     padding: 10px 12px;
                     border-radius: 10px;
                     background: #f8faff;
                     transition: all 0.3s ease;
                     cursor: default;
                     }

                     /* =========================
                     ICON STYLE
                     ======================== */
                     .ms-4 i {
                     /*background: linear-gradient(135deg, #007bff, #00c6ff);*/
                     color: #fff !important;
                     font-size: 11px;
                     padding: 6px;
                     margin-right: 10px;
                     border-radius: 50%;
                     box-shadow: 0 4px 10px rgba(0,123,255,0.3);
                     transition: 0.3s ease;
                     }

                     /* =========================
                     HOVER EFFECT
                     ========================= */
                     .ms-4 p:hover {
                     background: #eaf3ff;
                     transform: translateX(8px);
                     color: #007bff;
                     }

                     .ms-4 p:hover i {
                     transform: scale(1.1);
                     box-shadow: 0 6px 15px rgba(0,123,255,0.4);
                     }

                     /* =========================
                     LAST ITEM FIX
                     ========================= */
                     .ms-4 p.mb-0 {
                      margin-bottom: 0;
                     }  

                     /* =========================
                     RESPONSIVE
                     ========================= */
                     @media (max-width: 576px) {
                     .ms-4 p {
                     font-size: 13px;
                     padding: 8px 10px;
                     }
                     }

                    .facts {
         		transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
         		border-radius: 0 0 50px 50px;
         		background: #02245B(255, 255, 255, 0.95) !important;
         	     }

  		     .stats-section {
            background-color: var(--primary-color) !important;
            color: var(--title-text-color);
            text-align: center;
            border-top: 3px solid var(--border-color);
            border-bottom: 3px solid var(--border-color);
            padding: 20px;
            }
            .counter-value {
            font-weight: bold;
            color: var(--counter-text-color);
            font-size: 2rem;
            display: block;
            transition: color 0.3s ease-in-out;
            }
            .counter-title {
            font-weight: bold;
            color: var(--title-text-color);
            font-size: 1.2rem;
            margin-top: 5px;
            }
            .stats-counter {
            padding: 20px;
            border-radius: 10px;
            background-color: #E3F2FD; /* Light Blue */
            color: #02245B; 
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            }
            .stats-counter:hover {
            transform: scale(1.07);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            }
            .stats-column {
            text-align: center;
            }
            @media (max-width: 768px) {
            .counter-value {
            font-size: 1.8rem;
            }
            .counter-title {
            font-size: 1rem;
            }    
            .stats-counter {
            padding: 15px;
            }
            }


            /* Main box styles */
            .et_pb_blurb_content {
            transition: transform 0.3s ease, background-color 0.3s ease;
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 0;
            text-align: center;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            margin: 0 auto; /* Center horizontally */
            max-width: 300px; /* Prevent too wide on large screens */
            width: 100%;
            }
            /* Hover effect */
            .et_pb_blurb_content:hover {
            transform: scale(1.05);
            background-color: #e0f7fa;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            }
            /* Image scaling */
            .et_pb_blurb_content img {
            transition: transform 0.3s ease;
            margin-bottom: 10px;
            max-width: 50px;
            height: auto;
            }
            /* Image hover zoom */
            .et_pb_blurb_content:hover img {
            transform: scale(1.2);
            }
            /* Background helper class */
            .bgf {
            background-color: #f0f0f0;
            }
            /* Space between rows */
            .row {
            margin-bottom: 15px;
            }
            /* Text inside box */
            .et_pb_blurb_description p {
            margin: 0;
            font-size: 14px;
            line-height: 1.2;
            text-align: center;
            }
            /* Responsive adjustments */
            @media (max-width: 768px) {
            .et_pb_blurb_content {
            height: auto;
            padding: 20px;
            }
            .et_pb_blurb_description p {
            font-size: 13px;
            }
            .et_pb_blurb_content img {
            max-width: 60%;
            height: auto;
            }
            }
            @media (max-width: 576px) {
            .et_pb_blurb_content {
            height: auto;
            padding: 15px;
            }
            .et_pb_blurb_description p {
            font-size: 12px;
            }
            .et_pb_blurb_content img {
            max-width: 50%;
            height: auto;
            margin-bottom: 10px;
            }
            }
            /* Optional: spacing fix for stacked cols */
            @media (max-width: 768px) {
            .row > [class*='col-'] {
            margin-bottom: 20px;
            }
            }
            /* Reset inline margin for smaller screens */
            @media (max-width: 768px) {
            .cards-container {
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px;
            padding-right: 15px;
            }
            .row {
            justify-content: center; /* keeps cards centered */
            }
            }


             * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         }
         body {
         font-family: 'Rubik', sans-serif;
         line-height: 1.6;
         background-color: #fefefe;
         }
         .alert-section {
         padding: 50px 15px;
         background: linear-gradient(135deg, #e8f4fd 0%, #ffffff 100%);
         position: relative;
         overflow: hidden;
         }
         .container {
         max-width: 1200px;
         margin: 0 auto;
         }
         .alert-badge {
         display: inline-block;
         background: linear-gradient(135deg, #28a745, #20c997);
         color: white;
         padding: 10px 25px;
         border-radius: 30px;
         font-size: 14px;
         font-weight: 600;
         margin-bottom: 20px;
         box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
         animation: fadeInDown 1s ease forwards;
         }
         .alert-title {
         font-size: 2.75rem;
         font-weight: 800;
         color: #1a252f;
         margin-bottom: 25px;
         line-height: 1.2;
         animation: fadeInLeft 1s ease 0.2s forwards;
         }
         .alert-description {
         font-size: 16px;
         color: #495057;
         margin-bottom: 40px;
         line-height: 1.75;
         animation: fadeInLeft 1s ease 0.4s forwards;
         }
         .alert-image {
         text-align: center;
         padding: 20px;
         animation: zoomIn 1.2s ease forwards;
         }
         .alert-image img {
         max-width: 100%;
         height: auto;
         border-radius: 20px;
         box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
         transition: transform 0.5s ease;
         }
         .alert-image img:hover {
         transform: scale(1.05);
         }
         .feature-grid {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 25px;
         margin-top: 50px;
         animation: fadeInUp 1s ease 0.5s forwards;
         }
         .feature-item {
         display: flex;
         align-items: center;
         padding: 20px 25px;
         background: #ffffff;
         border-radius: 15px;
         box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
         transition: transform 0.3s ease, box-shadow 0.3s ease;
         border-left: 4px solid #28a745;
         }
         .feature-item:hover {
         transform: translateY(-5px);
         box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
         }
         .feature-item i {
         font-size: 22px;
         color: #dc3545;
         margin-right: 15px;
         }
         .feature-item span {
         font-weight: 600;
         color: #1a252f;
         font-size: 15px;
         }
         /* Animations */
         @keyframes fadeInDown {
         0% {
         opacity: 0;
         transform: translateY(-30px);
         }
         100% {
         opacity: 1;
         transform: translateY(0);
         }
         }
         @keyframes fadeInLeft {
         0% {
         opacity: 0;
         transform: translateX(-30px);
         }
         100% {
         opacity: 1;
         transform: translateX(0);
         }
         }
         @keyframes fadeInUp {
         0% {
         opacity: 0;
         transform: translateY(30px);
         }
         100% {
         opacity: 1;
         transform: translateY(0);
         }
         }
         @keyframes zoomIn {
         0% {
         opacity: 0;
         transform: scale(0.9);
         }
         100% {
         opacity: 1;
         transform: scale(1);
         }
         }
         /* Responsive Design */
         @media (max-width: 992px) {
         .feature-grid {
         grid-template-columns: repeat(2, 1fr);
         }
         .alert-title {
         font-size: 2.25rem;
         }
         }
         @media (max-width: 768px) {
         .alert-section {
         padding: 60px 10px;
         }
         .alert-title {
         font-size: 2rem;
         }
         .feature-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         }
         .alert-image {
         padding: 10px;
         margin-bottom: 30px;
         }
         }


         * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      .clients-section {
      max-width: 1400px;
      margin: 0 auto;
      
      }
      .section-title {
      text-align: center;
      margin-bottom: 35px;
      animation: fadeInDown 0.6s ease-out;
      }
      .section-title h1 {
      font-size: 2.5rem;
      color: rgb(1, 10, 19);
      margin-bottom: 8px;
      font-weight: 700;
      position: relative;
      display: inline-block;
      }
      .section-title h1::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #3498db, #2ecc71);
      border-radius: 2px;
      }
      .section-title h2 {
      font-size: 1.6rem;
      color: rgb(1, 10, 19);
      margin-bottom: 0;
      font-weight: 600;
      margin-top: 15px;
      line-height: 1.3;
      }
      /* Layout Toggle */
      .layout-toggle {
      text-align: center;
      margin-bottom: 25px;
      }
      .toggle-btn {
      background: white;
      color: #3498db;
      border: 2px solid #3498db;
      padding: 10px 25px;
      margin: 0 6px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
      }
      .toggle-btn:hover {
      background: #3498db;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 5px 12px rgba(52, 152, 219, 0.3);
      }
      .toggle-btn.active {
      background: #3498db;
      color: white;
      }
      .layout-section {
      display: none;
      }
      .layout-section.active {
      display: block;
      }
      /* Marquee Container */
      .marquee-wrapper {
      overflow: hidden;
      position: relative;
      background: linear-gradient(to right, rgba(248, 249, 250, 0.8) 0%, transparent 8%, transparent 92%, rgba(248, 249, 250, 0.8) 100%);
      padding: 12px 0;
      margin-bottom: 15px;
      }
      .marquee-content {
      display: flex;
      animation: scroll 35s linear infinite;
      gap: 20px;
      }
      .marquee-content:hover {
      animation-play-state: paused;
      }
      .marquee-item {
      flex-shrink: 0;
      background: white;
      padding: 18px 25px;
      border-radius: 10px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      height: 110px;
      }
      .marquee-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
      }
      .marquee-item img {
      max-width: 160px;
      max-height: 75px;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
      }
      .marquee-item:hover img {
      transform: scale(1.08);
      }
      @keyframes scroll {
      0% {
      transform: translateX(0);
      }
      100% {
      transform: translateX(-50%);
      }
      }
      /* Static Grid */
      .clients-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 15px;
      padding: 0 10px;
      }
      .client-logo-container {
      background: white;
      padding: 22px 18px;
      border-radius: 10px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 110px;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
      animation: slideUp 0.5s ease-out backwards;
      }
      .client-logo-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(46, 204, 113, 0.08) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      }
      .client-logo-container:hover::before {
      opacity: 1;
      }
      .client-logo-container:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 10px 25px rgba(52, 152, 219, 0.22);
      border-color: #3498db;
      }
      .client-logo {
      max-width: 110%;
      max-height: 75px;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
      }
      .client-logo-container:hover .client-logo {
      transform: scale(1.08);
      }
      /* Staggered animation */
      .client-logo-container:nth-child(1) { animation-delay: 0.03s; }
      .client-logo-container:nth-child(2) { animation-delay: 0.06s; }
      .client-logo-container:nth-child(3) { animation-delay: 0.09s; }
      .client-logo-container:nth-child(4) { animation-delay: 0.12s; }
      .client-logo-container:nth-child(5) { animation-delay: 0.15s; }
      .client-logo-container:nth-child(6) { animation-delay: 0.18s; }
      .client-logo-container:nth-child(7) { animation-delay: 0.21s; }
      .client-logo-container:nth-child(8) { animation-delay: 0.24s; }
      .client-logo-container:nth-child(9) { animation-delay: 0.27s; }
      .client-logo-container:nth-child(10) { animation-delay: 0.30s; }
      .client-logo-container:nth-child(11) { animation-delay: 0.33s; }
      .client-logo-container:nth-child(12) { animation-delay: 0.36s; }
      .client-logo-container:nth-child(13) { animation-delay: 0.39s; }
      .client-logo-container:nth-child(14) { animation-delay: 0.42s; }
      .client-logo-container:nth-child(15) { animation-delay: 0.45s; }
      .client-logo-container:nth-child(16) { animation-delay: 0.48s; }
      .client-logo-container:nth-child(17) { animation-delay: 0.51s; }
      .client-logo-container:nth-child(19) { animation-delay: 0.57s; }
      .client-logo-container:nth-child(20) { animation-delay: 0.60s; }
      .client-logo-container:nth-child(21) { animation-delay: 0.63s; }
      @keyframes fadeInDown {
      from {
      opacity: 0;
      transform: translateY(-15px);
      }
      to {
      opacity: 1;
      transform: translateY(0);
      }
      }
      @keyframes slideUp {
      from {
      opacity: 0;
      transform: translateY(25px);
      }
      to {
      opacity: 1;
      transform: translateY(0);
      }
      }
      /* Tablet */
      @media (max-width: 1024px) {
      .clients-section {
      padding: 35px 12px 25px;
      }
      .section-title {
      margin-bottom: 30px;
      }
      .section-title h1 {
      font-size: 2.2rem;
      }
      .section-title h2 {
      font-size: 1.4rem;
      }
      .clients-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      }
      .client-logo-container {
      padding: 18px 15px;
      min-height: 100px;
      }
      .client-logo {
      max-height: 68px;
      }
      .marquee-item {
      min-width: 170px;
      height: 100px;
      padding: 15px 22px;
      }
      .marquee-item img {
      max-width: 140px;
      max-height: 68px;
      }
      }
      /* Mobile */
      @media (max-width: 768px) {
      .clients-section {
      padding: 30px 10px 20px;
      }
      .section-title {
      margin-bottom: 25px;
      }
      .section-title h1 {
      font-size: 1.8rem;
      margin-bottom: 6px;
      }
      .section-title h2 {
      font-size: 1.2rem;
      padding: 0 10px;
      margin-top: 12px;
      }
      .layout-toggle {
      margin-bottom: 20px;
      }
      .toggle-btn {
      padding: 8px 18px;
      font-size: 13px;
      margin: 0 4px;
      }
      .clients-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 0 8px;
      }
      .client-logo-container {
      padding: 15px 10px;
      min-height: 95px;
      }
      .client-logo {
      max-height: 62px;
      }
      .marquee-wrapper {
      padding: 10px 0;
      margin-bottom: 12px;
      }
      .marquee-item {
      min-width: 150px;
      height: 90px;
      padding: 12px 18px;
      }
      .marquee-item img {
      max-width: 120px;
      max-height: 60px;
      }
      }
      /* Small Mobile */
      @media (max-width: 480px) {
      .clients-section {
      padding: 25px 8px 18px;
      }
      .section-title h1 {
      font-size: 1.5rem;
      }
      .section-title h2 {
      font-size: 1.05rem;
      padding: 0 8px;
      }
      .clients-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      padding: 0 6px;
      }
      .client-logo-container {
      padding: 14px 8px;
      min-height: 88px;
      }
      .client-logo {
      max-height: 58px;
      }
      .marquee-item {
      min-width: 135px;
      height: 85px;
      padding: 10px 15px;
      }
      .marquee-item img {
      max-width: 110px;
      max-height: 55px;
      }
      .toggle-btn {
      padding: 7px 15px;
      font-size: 12px;
      margin: 3px 3px;
      }
      }
      @media (max-width: 360px) {
      .clients-section {
      padding: 20px 6px 15px;
      }
      .clients-grid {
      gap: 7px;
      }
      .client-logo-container {
      padding: 12px 6px;
      min-height: 82px;
      }
      .client-logo {
      max-height: 52px;
      }
      .marquee-item {
      min-width: 125px;
      height: 80px;
      }
      }


      .dashboard-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background-color: #fff;
      }
      .dashboard-image {
      width: 100%; /* You can adjust to 95% or 100% for full width */
      max-width: 1600px; /* Limits max size for large screens */
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      }


        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      body {
      /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
      font-weight:500;
      margin: 0;
      padding: 0;
      background-color: #fff;
      }
      .hero-container {
      width: 100%;
      max-width: 1200px;
      height: 400px;
      margin: 50px auto;
      border-radius: 32px;
      background: linear-gradient(45deg, #ff6b6b,rgb(151, 149, 19), #45b7d1,rgb(34, 231, 139),rgb(248, 135, 29),rgb(240, 33, 240),rgb(92, 224, 80), #54a0ff);
      background-size: 800% 800%;
      animation: rainbowShift 15s ease-in-out infinite;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(255, 107, 107, 0.4);
      }
      .hero-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
      radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
      animation: magicFloat 20s ease-in-out infinite;
      }
      .hero-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
      linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%),
      linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
      animation: doubleSpark 12s linear infinite;
      }
      .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 60px 80px;
      color: white;
      animation: fadeInUp 1.5s ease-out;
      }
      .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
      background:#02245B;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      animation: titlePulse 6s ease-in-out infinite;
      filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
      }
      .hero-content p {
      font-size: 1.125rem;
      line-height: 1.6;
      font-weight: 500;
      opacity: 0.98;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      max-width: 900px;
      animation: slideInText 2s ease-out 0.5s both;
      color: rgba(255, 255, 255, 0.95);
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
      }
      @keyframes rainbowShift {
      0% {
      background-position: 0% 50%;
      filter: hue-rotate(0deg) saturate(1.2);
      }
      20% {
      background-position: 100% 0%;
      filter: hue-rotate(72deg) saturate(1.3);
      }
      40% {
      background-position: 100% 100%;
      filter: hue-rotate(144deg) saturate(1.4);
      }
      60% {
      background-position: 0% 100%;
      filter: hue-rotate(216deg) saturate(1.3);
      }
      80% {
      background-position: 50% 0%;
      filter: hue-rotate(288deg) saturate(1.2);
      }
      100% {
      background-position: 0% 50%;
      filter: hue-rotate(360deg) saturate(1.2);
      }
      }
      @keyframes magicFloat {
      0%, 100% {
      transform: translateY(0px) rotate(0deg) scale(1);
      opacity: 1;
      }
      16.66% {
      transform: translateY(-15px) rotate(30deg) scale(1.1);
      opacity: 0.8;
      }
      33.33% {
      transform: translateY(10px) rotate(-20deg) scale(0.9);
      opacity: 0.9;
      }
      50% {
      transform: translateY(-8px) rotate(45deg) scale(1.05);
      opacity: 0.7;
      }
      66.66% {
      transform: translateY(12px) rotate(-30deg) scale(0.95);
      opacity: 0.85;
      }
      83.33% {
      transform: translateY(-5px) rotate(15deg) scale(1.02);
      opacity: 0.9;
      }
      }
      @keyframes doubleSpark {
      0% {
      transform: translateX(-200%) translateY(-200%) rotate(45deg);
      opacity: 0;
      }
      10% {
      opacity: 1;
      }
      50% {
      transform: translateX(0%) translateY(0%) rotate(45deg);
      opacity: 1;
      }
      90% {
      opacity: 1;
      }
      100% {
      transform: translateX(200%) translateY(200%) rotate(45deg);
      opacity: 0;
      }
      }
      @keyframes fadeInUp {
      from {
      opacity: 0;
      transform: translateY(40px) scale(0.9);
      }
      to {
      opacity: 1;
      transform: translateY(0) scale(1);
      }
      }
      @keyframes titlePulse {
      0%, 100% {
      transform: scale(1);
      filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
      }
      50% {
      transform: scale(1.02);
      filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.5));
      }
      }
      @keyframes slideInText {
      from {
      opacity: 0;
      transform: translateY(30px) translateX(-20px);
      filter: blur(5px);
      }
      to {
      opacity: 0.98;
      transform: translateY(0) translateX(0);
      filter: blur(0px);
      }
      }
      /* Responsive Design */
      @media (max-width: 1024px) {
      .hero-container {
      max-width: 95%;
      margin: 30px auto;
      }
      .hero-content {
      padding: 50px 60px;
      }
      .hero-content h1 {
      font-size: 3rem;
      }
      }
      @media (max-width: 768px) {
      .hero-container {
      height: 350px;
      border-radius: 24px;
      margin: 20px auto;
      }
      .hero-content {
      padding: 40px 40px;
      }
      .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      }
      .hero-content p {
      font-size: 1rem;
      }
      }
      @media (max-width: 480px) {
      .hero-container {
      height: 320px;
      border-radius: 20px;
      }
      .hero-content {
      padding: 10px;
      }
      .hero-content h1 {
      font-size: 2rem;
      line-height: 1.2;
      }
      .hero-content p {
      font-size: 0.95rem;
      line-height: 1.5;
      }
      }
      /* General Section Spacing */
      .container-xxl {
      padding: 60px calc(var(--bs-gutter-x) / 2); /* top/bottom: 60px, left/right: gutter */
      font-family: 'Rubik', sans-serif;
      }
      /* Section Headings */
      .container .text-center h1 {
      color: #02245B;
      font-weight: 700;
      }
      .container .text-primary {
      color: #FF5E14 !important;
      }
      /* Testimonial Item Box */
      .testimonial-item {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-top: 30px;
      margin: 15px;
      }
      .testimonial-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      }
      /* Testimonial Image */
      .testimonial-img img {
      width: 120px;
      height: 120px;
      border: 5px solid #fff;
      }
      /* Testimonial Text Box */
      .testimonial-text {
      background-color: #f1f5ff;
      color: #333;
      }
      .testimonial-text p {
      font-size: 0.95rem;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 1rem;
      color: #555;
      }
      .testimonial-text h5 {
      font-weight: 600;
      color: #0d6efd;
      }
      /* Owl Carousel Arrows (Optional, if used) */
      .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #0d6efd;
      border: none;
      padding: 10px 15px;
      border-radius: 50%;
      color: #fff;
      }
      .owl-nav .owl-prev {
      left: -30px;
      }
      .owl-nav .owl-next {
      right: -30px;
      }
      /* Responsive Adjustments */
      @media (max-width: 768px) {
      .testimonial-text {
      min-height: auto;
      padding: 20px;
      }
      .testimonial-img img {
      width: 100px;
      height: 100px;
      }
      }