
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            /* white */
            color: #1e293b;
            /* slate-900 */
        }

        /* Custom shadows and rounded corners */
        .card-shadow {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border-radius: 12px;
        }

        .card-shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 12px;
        }

        .rounded-3xl {
            border-radius: 2rem;
        }

        .rounded-4xl {
            border-radius: 3rem;
        }

        /* Hover effects */
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        /* Brand card hover animation */
        .brand-card {
            transition: all 0.3s ease-in-out;
            cursor: pointer;
        }

        .brand-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
            background-color: #f8fafc !important;
        }

        .btn-black {
            background-color: black;
            color: white;
            border: none;
            transition: all 0.3s ease;
            padding: 15px 30px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-black:hover {
            background-color: #334155;
            /* slate-700 */
            color: white;
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        }

        .btn-light {
            background-color: #f1f5f9;
            /* slate-100 */
            color: #1e293b;
            /* slate-900 */
            border: none;
            transition: background-color 0.3s ease;
            padding: 15px 30px !important;
            border-radius: 50px !important;
        }

        .btn-light:hover {
            background-color: #e2e8f0;
            /* slate-200 */
            color: #1e293b;
        }

        /* Navigation link animation on hover and active states */
        .nav-link {
            transition: all 0.2s ease-in-out;
            font-size: 15px;
            padding: 5px;
            /* Updated padding */
        }

        .nav-link:hover {
            transform: scale(1.05);
            color: #000000 !important;
        }

        .nav-link.active {
            transform: scale(1.1);
            font-weight: 700 !important;
            /* Make the text bold with stronger weight */
            color: #1e293b !important;
            /* Force a darker color */
            background-color: #ffffff !important;
            /* Add a white background to active link */
        }
        .text-secondary{
            font-size: 14px;
        }

        /* Left-aligned vertical navigation */
        .vertical-nav {
            height: auto;
            position: sticky;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        /* Main content scroll behavior */
        main {
            overflow-y: auto;
            max-height: 100vh;
        }

        /* Smooth scrolling for anchor links */
        html {
            scroll-behavior: smooth;
        }

        /* Custom styles for the accordion to remove the icons */
        .accordion-button {
            background-image: none !important;
        }

        .accordion-button:not(.collapsed) {
            background-image: none !important;
            box-shadow: none;
        }

        /* Fixed pricing button */
        .fixed-pricing-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            padding: 15px 30px !important;
            border-radius: 50px !important;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .fixed-pricing-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Hide fixed button on mobile */
        @media (max-width: 768px) {
            .fixed-pricing-btn {
                display: none;
            }
        }

        /* Mobile responsive optimizations */
        @media (max-width: 576px) {

            /* Adjust hero text size on mobile */
            .display-6 {
                font-size: 1.5rem !important;
            }

            /* Reduce padding on mobile */
            .p-4.p-md-5 {
                padding: 1rem !important;
            }

            /* Stack buttons vertically on mobile */
            .d-flex[style*="gap: 1rem"] {
                flex-direction: column !important;
                gap: 0.5rem !important;
            }

            /* Adjust card padding on mobile */
            .card.p-4,
            .card-shadow.p-4 {
                padding: 1rem !important;
            }

            /* Reduce brand logo font size */
            .fs-4 {
                font-size: 1rem !important;
            }

            /* Adjust pricing card on mobile */
            .card.card-shadow-lg.p-4.p-md-5 {
                padding: 1.5rem !important;
            }
        }

        @media (max-width: 768px) {

            /* Adjust navigation width on tablet */
            #sidebarMenu {
                width: 250px !important;
            }

            /* Adjust section spacing on tablet */
            .py-5 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }

            /* Make testimonial images smaller on tablet */
            .card-shadow img {
                max-height: 200px;
                object-fit: cover;
            }
        }

        @media (min-width: 1200px) {

            /* Optimize for large screens */
            #sidebarMenu {
                width: 1000px !important;
            }
        }

        /* Contact form styles */
        .glimps-form .form-control {
            background-color: #f8fafc;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .glimps-form .form-control:focus {
            background-color: #ffffff;
            border-color: #000000;
            box-shadow: none;
            outline: none;
        }

        .glimps-form .form-control::placeholder {
            color: #94a3b8;
        }

        /* Modal form styles */
        #bookCallModal .form-control {
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        #bookCallModal .form-control:focus {
            background-color: #ffffff;
            border-color: #000000;
            box-shadow: none;
            outline: none;
        }

        #bookCallModal .form-control::placeholder {
            color: #94a3b8;
        }

        #bookCallModal .modal-content {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Calendar Styles */
        .calendar-days-header {
            display: flex;
        }

        .calendar-day-name {
            flex: 1;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            padding: 5px 0;
        }

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

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: #fff;
            border: 1px solid transparent;
        }

        .calendar-day:hover:not(.disabled):not(.empty) {
            background: #e2e8f0;
            transform: scale(1.05);
        }

        .calendar-day.selected {
            background: #000;
            color: #fff;
            font-weight: 600;
        }

        .calendar-day.today {
            border: 2px solid #000;
            font-weight: 600;
        }

        .calendar-day.disabled {
            color: #cbd5e1;
            cursor: not-allowed;
            background: transparent;
        }

        .calendar-day.empty {
            background: transparent;
            cursor: default;
        }

        .calendar-header .btn-light {
            border-radius: 8px;
            padding: 5px 12px;
            border: 1px solid #e2e8f0;
        }

        .calendar-header .btn-light:hover {
            background: #e2e8f0;
        }

        @media (max-width: 768px) {
            .calendar-day {
                font-size: 12px;
            }
            .calendar-day-name {
                font-size: 10px;
            }
        }
         .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            left: 40px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            color: #fff;
            transform: scale(1.1);
        }

        /* Contact Section Styles */
        /* .contact-map-wrapper {
            background-color: #f1f5f9;
        }

        .contact-map-wrapper .map-background iframe {
            pointer-events: none;
        }

        .contact-map-wrapper:hover .map-background iframe {
            pointer-events: auto;
        }

        .contact-info-card {
            min-height: 400px;
            display: flex;
            align-items: center;
        }

        .contact-item a:hover {
            color: #000 !important;
        }

        @media (max-width: 768px) {
            .contact-info-card {
                min-height: auto;
            }

            .contact-map-wrapper {
                min-height: 600px !important;
            }

            .contact-info-card .card {
                margin: 1rem !important;
            }
        } */

        /* ============================================
           SCROLL & LOAD ANIMATIONS
           ============================================ */

        /* Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Base state for animated elements - hidden before animation */
        .animate-on-scroll,
        .animate-on-load {
            opacity: 0;
        }

        /* Triggered state - when element is visible */
        .animate-on-scroll.animated,
        .animate-on-load.animated {
            opacity: 1;
        }

        /* Fade In Up Animation */
        .animate-fade-up.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Fade In Animation */
        .animate-fade.animated {
            animation: fadeIn 0.8s ease-out forwards;
        }

        /* Slide In Left Animation */
        .animate-slide-left.animated {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        /* Slide In Right Animation */
        .animate-slide-right.animated {
            animation: slideInRight 0.8s ease-out forwards;
        }

        /* Scale In Animation */
        .animate-scale.animated {
            animation: scaleIn 0.7s ease-out forwards;
        }

        /* Staggered delays for card groups */
        .animate-delay-1 { animation-delay: 0.1s; }
        .animate-delay-2 { animation-delay: 0.2s; }
        .animate-delay-3 { animation-delay: 0.3s; }
        .animate-delay-4 { animation-delay: 0.4s; }
        .animate-delay-5 { animation-delay: 0.5s; }
        .animate-delay-6 { animation-delay: 0.6s; }

        /* Section animations */
        section.animate-on-scroll {
            transition: opacity 0.3s ease;
        }

        /* Card animations */
        .card.animate-on-scroll,
        .col.animate-on-scroll {
            transition: opacity 0.3s ease;
        }

        /* Respect reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            .animate-on-scroll,
            .animate-on-load {
                opacity: 1;
                animation: none !important;
                transform: none !important;
            }
        }
