 :root {
     --primary-1: #0f62fe;
     --primary-2: #00c6ff;
     --dark: #0b2447;
     --muted: #6c7a93;
     --radius: 14px;
     --glass: rgba(255, 255, 255, 0.06);
 }


 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
     /* Bold */
 }

 p,
 a,
 li {
     font-family: 'Open Sans', sans-serif;
     font-weight: 400;
 }

 .btn {
     font-family: 'Poppins', sans-serif !important;
     font-weight: 600;
 }

 /* Base */
 body {
     font-family: 'Poppins', sans-serif;
     height: 100%;
     color: var(--dark);
     background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
 }

 /* ===============================
   CTA Strip
================================ */
 .cta-strip {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     color: white;
     padding: 2rem 1.5rem;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .cta-strip:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .cta-strip h3 {
     font-weight: 700;
     font-size: 2.5rem;
     margin-bottom: 0.8rem;
 }

 .cta-strip p {
     font-size: 1.2rem;
     opacity: 0.9;
     margin-bottom: 1.2rem;
 }

 .cta-strip .btn {
     color: #000;
     font-size: medium;
     border-radius: 12px;
     padding: 0.6rem 1.5rem;
     font-weight: 500;
     background: #fff;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .cta-strip .btn:hover {
     background: var(--primary-1) !important;
     color: #fff;
     transform: translateY(-2px);
 }

 /* Responsive CTA */
 @media (max-width: 768px) {
     .cta-strip h3 {
         font-size: 1.25rem;
     }

     .cta-strip p {
         font-size: 0.9rem;
     }

     .cta-strip .btn-grad {
         width: 100%;
         padding: 0.6rem 0;
     }
 }

 /* ===============================
   Navbar
================================ */
 /* Gradient colors */
 :root {
     --primary-1: #0d6efd;
     /* blue */
     --primary-2: #6610f2;
     /* purple */
 }

 /* Header Gradient */
 .header-gradient {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
 }

 .header-gradient .nav-link {
     color: #fff;
     transition: color 0.3s ease;
 }

 .header-gradient .nav-link:hover {
     color: #ffc107;

 }

 .navbar {
     padding: 1rem;

 }

 /* Brand */
 .brand {
     font-weight: 700;
     letter-spacing: 0.2px;
 }

 /* Top contact */
 .top-contact {
     font-size: 0.95rem;
 }

 /* Contact link */
 .contact-link {
     font-weight: 500;
     color: var(--primary-1);
     transition: 0.3s;
 }

 .contact-link:hover {
     color: #0d6efd;
 }

 /* Navbar Links */
 .navbar-nav .nav-link {
     font-weight: 500;
     color: #333;
     transition: all 0.3s ease;
     position: relative;
     padding: 0.5rem 0.8rem;
 }

 .navbar-nav .nav-link:hover {
     color: var(--primary-1);
 }

 /* Hover underline effect */
 .navbar-nav .nav-link::after {
     content: "";
     position: absolute;
     bottom: -4px;
     left: 0;
     width: 0%;
     height: 2px;
     background: linear-gradient(135deg, var(--primary-1), #0d6efd);
     transition: width 0.3s ease;
     border-radius: 2px;
 }

 .navbar-nav .nav-link:hover::after,
 .navbar-nav .nav-link.active::after {
     width: 100%;
 }

 .navbar-nav .nav-link.active {
     color: var(--primary-1);
 }

 /* ===============================
   Buttons
================================ */
 /* WhatsApp Button */
 .btn-whatsapp {
     background: #25D366 !important;
     color: #fff !important;
     border: none;
     font-weight: 500;
     border-radius: 50px;
     padding: 8px 20px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     transition: all 0.3s ease;
 }

 .btn-whatsapp:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 /* Email Button */
 .btn-email {
     background: linear-gradient(to right, #FF5858, #FFC8C8) !important;
     color: #fff !important;
     border: none;
     font-weight: 500;
     border-radius: 50px;
     padding: 8px 20px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     transition: all 0.3s ease;
 }

 .btn-email:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 /* Default bootstrap hamburger stays */
 .navbar-toggler.collapsed .navbar-toggler-icon {
     background-image: var(--bs-navbar-toggler-icon-bg);
 }

 /* Change to X when expanded */
 .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
     background-image: none;
     position: relative;
     width: 1.5em;
     height: 1.5em;
 }

 .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before,
 .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
     content: '';
     position: absolute;
     left: 0;
     top: 50%;
     width: 100%;
     height: 2px;
     background-color: #000;
     /* black line, same style as hamburger */
     transform-origin: center;
 }

 .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
     transform: rotate(45deg);
 }

 .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
     transform: rotate(-45deg);
 }


 /* ===============================
   Responsive Navbar
================================ */


 @media (max-width: 991px) {




     .navbar-toggler {
         --bs-navbar-toggler-focus-width: 0;
     }


     .navbar-nav {
         text-align: center;
         gap: 10px;
     }

     .navbar-nav .nav-link {
         display: block;
         padding: 10px;
     }

     .navbar-collapse .d-flex {
         flex-direction: column;
         gap: 10px;
         margin-top: 15px;
     }

     /* Mobile buttons full width */
     .navbar-collapse .btn {
         width: 50%;
         justify-content: center;
         font-size: 1rem;
         border-radius: 8px;
     }



 }

 /* ===============================
   Hero Section
================================ */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, #f8faff, #eef3ff);
     color: #fff;
     position: relative;
 }

 .hero.container {
     position: relative;
     z-index: 1;
     /* content above background */
 }

 /* Hero Card */
 .hero-card {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     border-radius: 22px;
     padding: 2.5rem;
     box-shadow: 0 12px 35px rgba(13, 110, 253, 0.25);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .hero-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 18px 45px rgba(13, 110, 253, 0.3);
 }

 /* Headings & Lead text */
 .hero h1 {
     font-size: 2.5rem;
     font-weight: 700;
     line-height: 1.3;
 }

 .hero p.lead {
     font-size: 1.1rem;
     margin-top: 0.5rem;
     opacity: 0.95;
 }

 /* Badge Pill */
 .badge-pill {
     display: inline-block;
     background: rgba(255, 255, 255, 0.15);
     color: #fff;
     padding: 6px 16px;
     font-size: 0.9rem;
     border-radius: 50px;
     font-weight: 600;
     letter-spacing: 0.5px;
 }

 /* Buttons */
 .btn-white,
 .btn-outline-light {
     border-radius: 50px;
     padding: 10px 28px;
     font-weight: 500;
     transition: all 0.3s ease;

 }

 .btn-white {
     background: #fff !important;
     color: var(--primary-1);
     border: 2px solid #fff;
 }

 .btn-white:hover {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2)) !important;
     color: #fff !important;
     transform: translateY(-2px);
     box-shadow: 0 6px 18px rgba(13, 110, 253, 0.25);
     border: 3px solid #fff;
 }

 .btn-outline-light {
     border: 2px solid #fff;
     color: #fff !important;
 }

 .btn-outline-light:hover {
     background: #fff;
     color: var(--primary-1) !important;
     transform: translateY(-2px);
     border: 3px solid #fff;
 }

 /* Features list */
 .hero-features {
     margin-top: 1.5rem;
     font-size: 0.95rem;
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .hero-features div {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .hero-features i {
     color: #fff;
     font-size: 1rem;
 }

 /* Hero Image Card */
 .hero .card,
 .hero-image-card {
     border-radius: 22px;
     overflow: hidden;
     box-shadow: 0 12px 35px rgba(13, 110, 253, 0.2);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .hero .card:hover,
 .hero-image-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 18px 45px rgba(13, 110, 253, 0.3);
 }

 .hero .card img,
 .hero-image-card img {
     border-radius: 22px;
     object-fit: cover;
     width: 100%;
     height: 100%;
 }

 /* ===============================
   Hero Banner Background
================================ */
 .hero-banner-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     z-index: 0;
     /* behind hero content */
 }

 .hero-banner-bg img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .banner-overlay {
     background: rgba(0, 0, 0, 0.25);
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 /* Optional Banner Content */
 .banner-content {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     color: #fff;
     padding: 0 1rem;
 }

 .banner-content h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .banner-content p {
     font-size: 1.2rem;
     margin-bottom: 1rem;
 }

 .banner-content .btn {
     font-size: 1rem;
     padding: 0.8rem 1.5rem;
 }

 /* Banner Image Sizes */
 .banner-img {
     width: 100%;
     height: 450px;
     object-fit: cover;
 }

 /* ===============================
   Responsive
================================ */
 @media (max-width: 992px) {
     .hero {
         text-align: center;
         padding: 3rem 1rem;
     }

     .hero h1 {
         font-size: 2.2rem;
     }

     .hero-card {
         padding: 2rem;
     }

     .btn-grad,
     .btn-outline-light {
         width: 100%;
         margin-top: 0.5rem;
     }

     .hero .card {
         margin-top: 2rem;
     }

     .banner-content h2 {
         font-size: 2rem;
     }

     .banner-content p {
         font-size: 1rem;
     }

     .banner-img {
         height: 350px;
     }


 }

 @media (max-width: 575px) {
     .hero h1 {
         font-size: 1.8rem;
     }

     .hero-card {
         padding: 1.8rem;
     }

     .banner-content h2 {
         font-size: 1.5rem;
     }

     .banner-content p {
         font-size: 0.9rem;
     }

     .banner-img {
         height: 250px;
     }
 }


 /* ===============================
   Services Section
================================ */
 #services {
     padding: 60px 0;
 }

 #services h2 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 #services h5 {
     font-size: 1rem;
     font-weight: 600;
     color: var(--primary-1);
 }

 #services h3 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 #services p {
     font-size: 1rem;
     color: #555;
 }

 #services ul {
     list-style: none;
     padding: 0;
     margin: 1rem 0;
 }

 #services ul li {
     margin-bottom: 0.5rem;
     font-size: 0.95rem;
     color: #444;
 }


 /* ===============================
   Service Card Style
================================ */
 .service-card {
     background: #fff;
     border-radius: 14px;
     padding: 1.5rem;
     box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
     transition: all 0.3s ease;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .service-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
 }

 /* ===============================
   Icon Wrapper (Gradient Circle)
================================ */
 .icon-wrapper {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
     color: #fff;
     font-size: 1.8rem;
     box-shadow: 0 6px 12px rgba(13, 110, 253, 0.2);
 }

 /* ===============================
   Service Links
================================ */
 .service-link {
     font-weight: 500;
     color: black;
     text-decoration: none;
     transition: 0.3s;
 }

 .service-link:hover {
     color: var(--primary-2);
 }

 /* ===============================
   Buttons
================================ */
 #services .btn-grad {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     color: #fff;
     border-radius: 50px;
     padding: 10px 28px;
     font-weight: 500;
     border: none;
     transition: background 0.3s ease, box-shadow 0.3s ease;
 }

 #services .btn-grad:hover {
     background: linear-gradient(135deg, var(--primary-2), var(--primary-1));
     box-shadow: 0 6px 18px rgba(13, 110, 253, 0.25);
 }

 /* Gradient button inside modal */
 .btn-grad {
     background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
     color: #fff;
     border: none;
     border-radius: 12px;
     padding: 0.6rem 1.2rem;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .btn-grad:hover {
     opacity: 0.9;
     transform: translateY(-2px);
 }

 /* ===============================
   Responsive
================================ */
 @media (max-width: 992px) {
     #services .row {
         text-align: center;
     }

     #services .col-lg-6 {
         order: unset !important;
     }
 }

 @media (max-width: 767px) {
     .service-card {
         padding: 1.25rem;
     }

     .icon-wrapper {
         width: 54px;
         height: 54px;
         font-size: 1.5rem;
     }
 }

 /* ===============================
   Elegant Modal v2
================================ */
 :root {
     --e-bg: #0b1020;
     --e-card: rgba(255, 255, 255, 0.06);
     --e-border: rgba(255, 255, 255, 0.18);
     --e-ring: rgba(59, 130, 246, .25);
     --e-primary-1: #4f46e5;
     --e-primary-2: #22d3ee;
     --e-accent-1: #ff7e5f;
     --e-accent-2: #feb47b;
     --e-text: #e8eefc;
     --e-muted: #9fb0c7;
 }

 .modal-elevated {
     border-radius: 20px;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
     border: 1px solid var(--e-border);
     box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
     overflow: hidden;
     color: var(--e-text);
     backdrop-filter: blur(10px);
 }

 .modal-elevated .modal-body {
     background: linear-gradient(180deg, rgba(34, 211, 238, 0.06), rgba(79, 70, 229, 0.06));
 }

 .modal-head {
     background: linear-gradient(135deg, var(--e-primary-1), var(--e-primary-2));
     color: #fff;
     padding: 1rem 1.25rem;
     border-bottom: 0;
 }



 .btn-close-white {
     filter: invert(1);
 }

 /* Subtle container for description + form */
 .modal-inner {
     max-width: 480px;
     margin: 0 auto;
 }

 /* Floating fields */
 .form-floating>.form-control,
 .form-floating>textarea.form-control {
     background-color: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--e-border);
     color: var(--e-text);
     border-radius: 14px;
 }

 .form-floating>label {
     color: var(--e-muted);
 }

 .form-control:focus,
 .form-select:focus,
 textarea.form-control:focus {
     border-color: transparent;
     box-shadow: 0 0 0 .2rem var(--e-ring);
 }

 /* Textarea height tune for floating labels */
 .form-floating textarea {
     height: 110px;
     min-height: 110px;
 }

 /* Helper text */
 .text-muted {
     color: var(--e-muted) !important;
 }

 /* CTA button */
 .btn-cta {
     display: inline-block;
     width: 100%;
     padding: 0.85rem 1rem;
     font-weight: 700;
     color: #0b1020;
     border: 0;
     border-radius: 14px;
     background: linear-gradient(135deg, var(--e-accent-1), var(--e-accent-2));
     transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
     box-shadow: 0 10px 28px rgba(255, 126, 95, 0.35);
 }

 .btn-cta:hover {
     transform: translateY(-2px);
     filter: brightness(1.05);
 }

 /* Footer divider soft */
 .modal-footer {
     border-top: 1px solid var(--e-border);
 }

 /* Compact spacing on mobile */
 @media (max-width:575px) {
     .modal-inner {
         max-width: 100%;
     }

     .modal-elevated .modal-body {
         padding: 1rem !important;
     }
 }


 /* ===============================
   Why Us Section
================================ */
 .why-card {
     background: #fff;
     border-radius: 14px;
     padding: 1.25rem;
     text-align: left;
     box-shadow: 0 4px 14px rgba(15, 98, 254, 0.08);
     transition: all 0.3s ease;
 }

 .why-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 8px 20px rgba(15, 98, 254, 0.15);
 }

 .why-card i {
     display: block;
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .why-img {
     max-width: 90%;
     border-radius: 18px;
 }

 /* Responsive Why Us */
 @media (max-width: 991px) {
     .why-img {
         max-width: 100%;
         margin-top: 2rem;
     }

     #why .g-5 {
         --bs-gutter-x: 0;
     }

 }

 @media (max-width: 575px) {
     .why-card {
         text-align: center;
     }

     .why-card i {
         margin: 0 auto 0.5rem;
     }


     .why-card-prnt {
         flex-direction: column-reverse;
     }

     #services h3 {
         font-size: 2.0rem;
     }

     #why .g-5 {
         --bs-gutter-x: 0;
     }
 }

 /* Contactless Payments Section */
 .icon-box {
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .icon-box:hover {
     transform: translateY(-5px);
     box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
 }

 .icon-img {
     width: 80px;
     height: 80px;
     object-fit: contain;
 }

 /* Best Card Swipe Machine Section */
 .feature-box {
     background: linear-gradient(135deg, #f8f9fa, #e9ecef);
     border-radius: 15px;
     padding: 25px 20px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 100%;
     text-align: center;
 }

 .feature-box:hover {
     transform: translateY(-5px);
     box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
     background: linear-gradient(135deg, #ffffff, #f1f3f5);
 }

 .icon-img {
     width: 70px;
     height: 70px;
     object-fit: contain;
 }

 h5 {
     font-size: 1rem;
     margin-bottom: 10px;
 }

 .text-muted.small {
     font-size: 0.9rem;
 }


 /* <!-- Accepted Payments Section --> */

 #accepted-payments {
     border-top: 1px solid #e5e5e5;
     border-bottom: 1px solid #e5e5e5;
 }

 .payment-logo {
     height: 50px;
     width: auto;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .payment-logo:hover {
     transform: scale(1.1);
 }



 /* Customer Reviews Section */
 #reviews {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     padding: 50px 15px;
 }

 /* Review Card */
 .review-card {
     background: #fff;
     color: #333;
     padding: 25px;
     border-radius: 15px;
     box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     width: 100%;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .review-card p {
     flex-grow: 1;
     line-height: 1.6;
 }

 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
 }

 .review-card small {
     display: block;
     margin-top: 10px;
     font-weight: 600;
     color: var(--primary-1);
 }

 .stars {
     color: #f4b400;
     margin-bottom: 10px;
 }

 /* ✅ Carousel Dots */
 .carousel-indicators {
     position: absolute;
     color: #fff;
     bottom: -35px;
     left: 50%;
     transform: translateX(-50%);
     margin: 0;
 }

 .carousel-indicators [data-bs-target] {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.6);
     border: none;
     margin: 0 6px;
     transition: all 0.3s ease;
 }

 .carousel-indicators .active {
     background-color: #fff;
     transform: scale(1.3);
 }

 /* Responsive tweaks */
 @media (max-width: 768px) {
     .review-card {
         padding: 20px;
     }
 }

 @media (max-width: 576px) {
     .review-card {
         padding: 15px;
     }

     .stars {
         font-size: 14px;
     }

     .review-card small {
         font-size: 13px;
     }
 }


 /* ===============================
   FAQ / Accordion
================================ */
 .accordion-button {
     font-weight: 500;
     font-size: 1.1rem;
     border: none;
     border-radius: 10px;
     margin-bottom: 10px;
     background: #f1f3f5;
     color: #333;
     transition: all 0.3s ease;
 }

 .accordion-button:hover {
     background: #e9ecef;
 }

 .accordion-button:not(.collapsed) {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     color: #fff;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .accordion-body {
     background: #fff;
     padding: 1rem 1.5rem;
     border-left: 3px solid #4f46e5;
     font-size: 0.95rem;
     color: #555;
 }

 /* Responsive FAQ */
 @media (max-width: 768px) {
     .accordion-button {
         font-size: 1rem;
         padding: 0.8rem 1rem;
     }

     .accordion-body {
         font-size: 0.9rem;
         padding: 0.8rem 1rem;
     }
 }

 /* ===============================
   Contact Section
================================ */
 #contact h3 {
     font-weight: 600;
     color: #1f2937;
 }

 #contact .text-muted {
     font-size: 0.95rem;
 }

 #contact i {
     transition: transform 0.3s ease;
 }

 #contact i:hover {
     transform: scale(1.2);
     color: #3b82f6;
 }

 #contact .card {
     background: #fff;
     border-radius: 1rem;
     padding: 2rem;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 #contact .btn-primary {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
     border: none;
     padding: 0.8rem 1.2rem;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 #contact .btn-primary:hover {
     background: linear-gradient(90deg, #3b82f6, #4f46e5);
 }

 /* Footer Gradient Background */
 .footer-gradient {
     background: #0b2447;
     color: #fff;
 }

 /* Hover on links */
 .hover-link:hover {
     color: var(--primary-1);
     text-decoration: underline;
 }


 /* Logo filter to make white */
 .footer-gradient .navbar-brand img {
     filter: brightness(0) invert(1);
 }

 /* Social Icons */
 .footer-gradient .social-icon {
     font-size: 1.2rem;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
 }

 .footer-gradient .social-icon:hover {
     background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
     transform: translateY(-3px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
     color: #fff;
 }

 /* Newsletter Button */
 .btn-footer {
     background: #fff !important;
     color: var(--primary-1);
     border-radius: 50px;
     padding: 8px 20px;
     font-weight: 500;
     border: none;
     transition: all 0.3s ease;
 }

 .btn-footer:hover {
     background: linear-gradient(135deg, var(--primary-1), var(--primary-2)) !important;
     color: #fff !important;
 }

 /* Newsletter Form Responsive */
 @media (max-width: 991px) {
     footer .newsletter-form {
         flex-direction: column;
     }

     footer .newsletter-form input,
     footer .newsletter-form .btn-footer {
         width: 100%;
     }

     .btn-footer {
         margin-top: 20px;
     }

     .form-control-sm {
         padding: 8px 10px !important;
     }

     .navbar-brand img {
         height: 60px;
     }
 }

 @media (max-width: 767px) {
     footer .social-icon {
         width: 35px;
         height: 35px;
         font-size: 1rem;
     }

     .contact-container {
         gap: 0 !important;
     }
 }



 .custom-arrow {
     color: #fff !important;
 }
 
 
   /* Container for buttons */
    .sticky-buttons {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 99999;
      -webkit-tap-highlight-color: transparent;
    }

    /* Individual button style */
    .sticky-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #fff;
      box-shadow: 0 6px 18px rgba(0,0,0,0.18);
      transition: transform 150ms ease, box-shadow 150ms ease;
      font-size: 22px;
    }

    .sticky-btn:active { transform: scale(0.98); }
    .sticky-btn:hover { transform: translateY(-3px); }

    /* WhatsApp */
    .sticky-btn.whatsapp { background: #25D366; }
    /* Call */
    .sticky-btn.call { background: #0b8; /* teal-ish; change if you want */ }

    /* Small tooltip label on hover (desktop) */
    .sticky-btn .label {
      position: absolute;
      right: 72px;
      background: rgba(0,0,0,0.8);
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 13px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(6px);
      transition: opacity 150ms ease, transform 150ms ease;
      pointer-events: none;
    }

    .sticky-btn:hover .label { opacity: 1; transform: translateX(0); }

    /* Mobile: position at bottom-right and layout horizontally */
    @media (max-width: 768px) {
      .sticky-buttons {
              /* top: auto; */
        bottom: 20px;
        right: 10px;
        transform: none;
        /* flex-direction: row; */
        gap: 10px;
      }

      .sticky-btn { width: 52px; height: 52px; font-size: 20px; }

      /* hide desktop tooltip on mobile */
      .sticky-btn .label { display: none; }
    }

    /* Optional: make sure it doesn't overlap with mobile navs (safe area) */
    @supports (padding: env(safe-area-inset-bottom)) {
      .sticky-buttons { padding-bottom: env(safe-area-inset-bottom); }
    }
