        :root {
            --primary-red: #d62828;
            --secondary-gray: #6c757d;
            --dark-black: #212529;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Ubuntu', sans-serif;
            color: var(--dark-black);
            overflow-x: hidden;
            font-size: 1.05rem;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
        }
        
        /* Header Styles */
        .top-bar {
            background-color: var(--dark-black);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
        }
        
        .top-bar a:hover {
            color: white;
        }
        
        .main-header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
            font-size: 32px;
            color: var(--primary-red);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        
        .logo span {
            color: var(--dark-black);
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-black);
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }
        
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            background-color: var(--primary-red);
            color: white;
        }
        
       /* Slider Styles */
        .slider-container {
            position: relative;
            overflow: hidden; 
            height: 85vh;
            min-height: 600px;
        }

        .slider {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: translateX(100%); 
            transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            z-index: 0;
        }

        .slide.active {
            transform: translateX(0);
            z-index: 2;
        }

        .slide.exit {
            transform: translateX(-100%);
            z-index: 1;
        }

        .slide-content {
            background-color: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(5px);
            color: white;
            padding: 60px;
            border-radius: 8px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            width: 90%;
            border-left: 5px solid var(--primary-red);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }
        
        .slide-text {
            flex: 1.5;
            min-width: 300px;
            padding-right: 40px;
        }

        .slide-running-text {
            flex: 1;
            min-width: 250px;
            height: 150px;
            overflow: hidden;
            position: relative;
            font-style: italic;
            border-left: 1px solid rgba(255,255,255,0.3);
            padding-left: 30px;
            display: flex;
            align-items: center;
        }

        .running-text-content {
            position: absolute;
            top: 0;
            left: 30px;
            width: 100%;
            animation: scrollText 15s linear infinite;
        }

        @keyframes scrollText {
            0% { top: 100%; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { top: -120%; opacity: 0; }
        }

        .slide h1 {
            font-size: 3.5rem; 
            margin-bottom: 20px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .slide p {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 30px;
            font-weight: 300;
            opacity: 0.9;
        }

        .btn-slider {
            background-color: var(--primary-red);
            color: white !important;
            border: none;
            padding: 14px 35px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
        }

        .btn-slider:hover {
            background-color: #b02020;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        } 
        
        /* Section Styles */
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title h2 {
            color: var(--dark-black);
            display: inline-block;
            padding-bottom: 15px;
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        /* Default Center Alignment Underline */
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-red);
        }

        /* Left Aligned Section Title for Welcome Section */
        .section-title.text-start h2:after {
            left: 0;
            transform: translateX(0);
        }
        
        .section-bg {
            background-color: var(--light-gray);
            padding: 80px 0;
        }

        /* Welcome Intro Specific Styles */
        #welcome-intro {
            background-color: #fff;
            padding-top: 50px; /* Reduced from 100px */
            padding-bottom: 80px;
            overflow: hidden; /* Necessary for GSAP elements coming from outside */
        }
        
        /* Services Grid Styling */
        .service-box {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--medium-gray);
        }
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-red);
        }
        .service-box i {
            font-size: 40px;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        .service-box h5 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .service-box p {
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .section-colored {
            background-color: var(--primary-red);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-colored h2, .section-colored h3 {
            color: white;
        }
        
        .section-colored .section-title h2:after {
            background-color: white;
        }
        
        /* Shapes Animation */
        .shape {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }
        
        .shape-1 { width: 200px; height: 200px; top: -50px; left: -50px; animation: float 8s ease-in-out infinite; }
        .shape-2 { width: 150px; height: 150px; bottom: -30px; right: 10%; animation: float 10s ease-in-out infinite reverse; }
        .shape-3 { width: 100px; height: 100px; top: 20%; right: -30px; animation: float 12s ease-in-out infinite; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }
        
        /* Welcome Section */
        .welcome-section {
            padding: 100px 0;
        }
        
        .icon-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .icon-box i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        
        .icon-box h4 {
            margin-bottom: 15px;
            color: var(--dark-black);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .icon-box p {
            font-size: 1.05rem;
            line-height: 1.6;
        }
        
        /* Footer Styles */
        .main-footer {
           background: linear-gradient(90deg, rgb(30, 30, 30) 0%, rgb(50, 50, 50) 100%);
            color: white;
            padding-top: 60px; 
        }
        
        .footer-widget h4 {
            color: white;
            margin-bottom: 25px;
            padding-bottom: 10px;
            position: relative;
            font-size: 1.4rem;
            font-weight: 700;
        }
        
        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-red);
        }
        
        .footer-widget ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 12px;
        }
        
        .footer-widget ul li a {
            color: #d1d1d1;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .footer-widget ul li a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary-red);
            transform: translateY(-5px);
        }

        /* Map Styling in Footer */
        .footer-map iframe {
            width: 100%;
            height: 100px;
            border: 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.4);
            padding: 10px 0;
            font-size: 0.95rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: rgba(214, 40, 40, 0.85);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-progress {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(var(--primary-red) 0%, transparent 0%);
            z-index: -1;
        }
        
        /* RESPONSIVE STYLES */
        @media (max-width: 992px) {
            .slider-container { height: 75vh; min-height: 550px; }
            .slide-content { 
                flex-direction: column; 
                align-items: flex-start; 
                padding: 40px;
            }
            .slide-text { 
                padding-right: 0; 
                margin-bottom: 20px; 
                text-align: left;
                width: 100%;
            }
            .slide h1 { font-size: 2.8rem; }
            .slide-running-text { 
                width: 100%; 
                border-left: none; 
                border-top: 1px solid rgba(255,255,255,0.3); 
                padding-left: 0;
                padding-top: 15px;
                height: auto;
                min-height: 80px;
            }
            .running-text-content {
                 position: relative;
                 animation: none;
                 top: 0;
                 left: 0;
                 font-size: 0.9rem;
            }
            
            /* Align Welcome section text center on mobile */
            .section-title.text-start {
                 text-align: center !important;
            }
            .section-title.text-start h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            #welcome-intro p {
                text-align: center;
            }
             #welcome-intro .btn-slider {
                display: block;
                margin: 20px auto 0;
                width: fit-content;
            }
        }
        
        @media (max-width: 768px) {
            .slider-container { height: 65vh; min-height: 500px; }
            .section-title h2 { font-size: 2rem; }
            
            /* Center slider content on tablet/mobile for better UX */
            .slide-content {
                text-align: center;
                align-items: center;
                padding: 30px;
            }
            .slide-text { text-align: center; }
            
            /* Footer columns stack on mobile */
            .footer-widget { margin-bottom: 30px; }
        }
        
        @media (max-width: 576px) {
            .slider-container { height: 80vh; min-height: 450px; }
            .slide-content { 
                width: 95%; 
                padding: 25px; /* Reduced padding */
                bottom: 20px;
            }
            .slide h1 { font-size: 2rem; margin-bottom: 15px; }
            .slide p { font-size: 1rem; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;}
            .btn-slider { padding: 10px 25px; font-size: 0.9rem; }
            
            /* Hide running text on very small screens to avoid clutter */
            .slide-running-text { display: none; }
        }
