
        :root {
            --primary: #FF7F50;
            --secondary: #4B0082;
            --accent: #FFD700;
            --dark: #2C3E50;
            --light: #FDF5E6;
            --font-main: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-main);
            background-color: #FFFFFF;
            color: var(--dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-main);
            font-weight: 800;
            color: var(--dark);
        }

        .section-padding { padding: 100px 0; }
        .section-bg-light { background-color: var(--light); }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .navbar-brand { font-weight: 800; font-size: 1.7rem; color: var(--dark) !important; }
        .nav-link { font-weight: 600; color: var(--dark) !important; margin: 0 10px; }
        .nav-link.active, .nav-link:hover { color: var(--primary) !important; }

        /* NEW: Styles for Logo with Tagline */
        .navbar-brand > div {
            display: flex;
            flex-direction: column;
            line-height: 1.1; /* Adjusts spacing between lines */
        }
        .navbar-brand .logo-tagline {
            font-size: 12.5px;
            font-weight: 400;
            letter-spacing: 0.5px;
            opacity: 0.9;
            text-align: right;
            line-height: 1.5;
        }
        /* END NEW Styles */

        .btn-call-us {
            background-image: linear-gradient(45deg, var(--primary) 0%, #ff9a78 100%);
            border: none;
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 14px 35px;
            border-radius: 50rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
        }
        .btn-call-us:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
        }
        .btn-call-us .icon { margin-right: 10px; font-size: 1.3rem; }

        #hero-slider .carousel-item {
            height: 100vh;
            min-height: 750px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        #hero-slider .carousel-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
        }
        #hero-slider .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            text-align: left;
            left: 10%;
            width: 55%;
        }
        #hero-slider .carousel-caption h1 {
            color: #fff;
            font-size: 4.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        #hero-slider .carousel-caption p {
            color: #fff;
            font-size: 1.25rem;
            max-width: 500px;
        }
        @media (max-width: 992px) {
            #hero-slider .carousel-caption h1 { font-size: 3rem; }
            #hero-slider .carousel-caption { width: 80%; }
        }
        @media (max-width: 768px) {
            #hero-slider .carousel-item::before { background: rgba(0,0,0,0.5); }
            #hero-slider .carousel-caption { text-align: center; width: 90%; left: 5%; }
        }

        .usp-card {
            background: #fff; border-radius: 20px; padding: 2.5rem;
            text-align: center; transition: all 0.4s ease; 
            border: 1px solid #eee;
            box-shadow: none;
        }
        .usp-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 20px 50px rgba(44, 62, 80, 0.1); 
            border-color: var(--primary);
        }
        .usp-card .icon-wrapper {
            width: 80px; height: 80px;
            background: linear-gradient(45deg, var(--light), #fff);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 2px solid var(--primary);
        }
        .usp-card .icon { font-size: 2.5rem; color: var(--primary); }

        #about-us {
            overflow: hidden;
            position: relative;
        }
        .about-blob {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: 110%;
            z-index: -1;
            opacity: 0.15;
            color: var(--primary);
        }

        .nav-pills .nav-link {
            font-weight: 600; color: var(--dark);
            padding: 10px 25px;
            border-radius: 50px;
            margin: 0 5px;
            transition: all .3s ease;
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary);
            color: #fff!important;
            box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
        }
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .gallery-item:hover { transform: scale(1.05); }
        .video-container {
            position: relative; padding-bottom: 56.25%; height: 0;
        }
        .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

        .testimonials-slider { 
            padding: 10px 0;
            position: relative; 
        }
        .testimonial-slide {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            margin: 0 15px;
            width: calc(100% - 30px);
        }
        .testimonial-img-container { flex: 0 0 45%; }
        .testimonial-img { width: 100%; height: 450px; object-fit: cover; }
        .testimonial-content { padding: 2.5rem; }
        .testimonial-content .quote-icon { font-size: 3rem; color: var(--accent); opacity: 0.5; }
        @media (max-width: 992px) {
            .testimonial-slide { flex-direction: column; margin: 0; width: 100%; }
            .testimonial-img-container { width: 100%; flex: auto; }
            .testimonial-img { height: 300px; }
        }
        .swiper-pagination-bullet-active { background: var(--primary) !important; }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--primary) !important;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background-color: var(--primary);
            color: #fff !important;
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem !important;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .swiper-button-next, .swiper-button-prev { display: none; }
        }

        footer { background-color: var(--dark); color: rgba(255, 255, 255, 0.8); }
        footer h2 { color: #fff; }
        .footer-social-links a {
            color: rgba(255,255,255,0.7);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .footer-social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* --- START: Fixed Bottom Bar for Mobile --- */
        .mobile-bottom-bar {
            display: none; /* Hidden by default on desktop */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
            z-index: 1031; /* Higher than navbar */
            padding: 8px 5px;
        }

        .mobile-bottom-bar .button-wrapper {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .mobile-bottom-bar .mobile-btn {
            flex-grow: 1;
            text-decoration: none;
            color: #fff;
            padding: 12px 10px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            margin: 0 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .mobile-bottom-bar .mobile-btn:hover {
            opacity: 0.9;
        }
        
        .mobile-bottom-bar .mobile-btn .icon {
            font-size: 1.2rem;
            margin-right: 8px;
        }

        .mobile-bottom-bar .btn-call-mobile {
            background-color: var(--primary); /* Use theme color */
        }

        .mobile-bottom-bar .btn-whatsapp-mobile {
            background-color: #25D366; /* WhatsApp green */
        }
        
        /* Media Query to show the bar only on mobile screens */
        @media (max-width: 768px) {
            .mobile-bottom-bar {
                display: block;
            }
            /* Add padding to the body to prevent content from being hidden by the fixed bar */
            body {
                padding-bottom: 80px; 
            }
        }
        /* --- END: Fixed Bottom Bar for Mobile --- */

