
        :root {
            --primary: #D10000;
            --primary-dark: #A80000;
            --secondary: #333333;
            --dark: #121212;
            --light: #F8F8F8;
            --accent: #FF6B00;
            --grey: #666666;
            --light-grey: #EEEEEE;
            --gradient: linear-gradient(135deg, #D10000 0%, #A80000 100%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--secondary);
            overflow-x: hidden;
            background-color: #FAFAFA;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            padding: 1.2rem 2rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .navbar-brand img {
            height: 55px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            font-weight: 600;
            margin: 0 0.5rem;
            position: relative;
            color: var(--dark);
            font-size: 1.05rem;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
            margin-top: 110px;
            padding-top: 50px;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(209, 0, 0, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.95rem;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(209, 0, 0, 0.4);
            background: var(--primary-dark);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary);
            color: white;
            padding: 13px 33px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            background: transparent;
            text-transform: uppercase;
            font-size: 0.95rem;
        }
        .btn-back {
            border: 2px solid var(--primary);
            color: black;
            padding: 13px 33px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            background: transparent;
            text-transform: uppercase;
            font-size: 0.95rem;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(209, 0, 0, 0.3);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3.5rem;
            text-align: center;
            color: var(--dark);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--gradient);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .service-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            height: 100%;
            background: white;
            border: 1px solid #f0f0f0;
			transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: rgba(209, 0, 0, 0.2);
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: rgba(209, 0, 0, 0.2);
        }
        
        .service-card img {
            transition: transform 0.7s ease;
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card:hover img {
            transform: scale(1.08);
        }
        
        .service-card-body {
            padding: 25px;
            text-align: center;
            background: white;
        }
        
        .service-card-title {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0;
            font-size: 1.2rem;
        }
        
        .service-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--gradient);
            color: white;
            padding: 15px;
            text-align: center;
            transform: translateY(0);
            transition: transform 0.4s ease;
        }
        
        
        .about-section {
            background: var(--dark);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.15;
        }
        
        .about-content {
            position: relative;
            z-index: 1;
        }
        
        .contact-banner {
            background: var(--gradient);
            padding: 50px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact-banner:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .contact-banner h3 {
            font-weight: 700;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }
        
        .contact-banner a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .contact-banner a:hover {
            text-decoration: underline;
        }
        
        .pricing-section {
            padding: 120px 0;
            background: var(--light);
        }
        
        .price-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }
        
        .price-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        
        .price-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-right: 25px;
            background: rgba(209, 0, 0, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .rate {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--primary);
            margin-left: auto;
        }
        
        .contact-section {
            padding: 120px 0;
            background: white;
        }
        
        .form-control {
            padding: 16px 20px;
            border-radius: 10px;
            border: 2px solid var(--light-grey);
            margin-bottom: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(209, 0, 0, 0.15);
            border-color: var(--primary);
        }
        
        .safety-logos {
            padding: 80px 0;
            background: var(--light);
        }
        
        .logo-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .logo-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .logo-item img {
            max-height: 100px;
            width: auto;
            transition: all 0.3s ease;
        }
        
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--primary);
        }
        
        .floating-call-banner {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .phone-link, .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            color: white;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
        }
        
        .phone-link {
            background: var(--primary);
        }
        
        .whatsapp-link {
            background: #25D366;
        }
        
        .phone-link:hover, .whatsapp-link:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
        }
        
        .phone-link span, .whatsapp-link span {
            display: none;
            margin-left: 12px;
        }
        
        .phone-link:hover, .whatsapp-link:hover {
            width: auto;
            padding: 0 25px;
            border-radius: 50px;
        }
        
        .phone-link:hover span, .whatsapp-link:hover span {
            display: inline;
        }
        
        .modal-content {
            border-radius: 20px;
            overflow: hidden;
            border: none;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .modal-header {
            background: var(--gradient);
            color: white;
            padding: 20px 25px;
        }
        
        .btn-close-white {
            filter: invert(1);
        }
        
        /* New elements */
        .stat-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border-bottom: 4px solid var(--primary);
        }
        
        .stat-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0;
            line-height: 1;
        }
        
        .stat-text {
            color: var(--grey);
            font-weight: 600;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin: 20px 0;
            position: relative;
			height: 100%;
            border-left: 4px solid var(--primary);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--dark);
        }
        
        .testimonial-role {
            color: var(--grey);
            font-size: 0.9rem;
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(209, 0, 0, 0.1);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .navbar {
                padding: 1rem;
            }
           
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .price-item {
                flex-direction: column;
                text-align: center;
            }
            
            .price-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .rate {
                margin-left: 0;
                margin-top: 20px;
            }
        }
        
        @media (max-width: 768px) {
  
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* placeholder for navbar so content doesn't jump */
.nav-placeholder {
  display: none;
  width: 100%;
  height: 0;
}

/* fixed state for navbar */
.navbar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  background-color: rgba(255,255,255,0.98);
  transition: padding 0.18s ease, background-color 0.18s ease;
}

/* smaller appearance after scrolling */
.navbar.navbar-scrolled {
  background-color: rgba(255,255,255,0.98);
}

        
		#preloader {
	position: fixed;
	z-index: 9999;
	background: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .5s ease, visibility .5s ease
}

#preloader.hidden {
	opacity: 0;
	visibility: hidden
}

.preloader-inner {
	display: flex;
	flex-direction: column;
	align-items: center
}

.preloader-logo {
	width: 250px;
	max-width: 90%;
	margin-bottom: 0;
  height:auto;
}

        /* Custom Styles for the Quote Modal */
        .modal-content {
            border-radius: 10px;
            overflow: hidden;
        }
        
        .modal-header {
            position: relative;
        }
        
        .progress-container {
            width: 100%;
            height: 6px;
            background-color: #e0e0e0;
            position: absolute;
            bottom: 0;
            left: 0;
        }
        
        .progress-bar {
            height: 100%;
            background-color: #0d6efd;
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .center-align {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }
        
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .step {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            font-weight: bold;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .step.active {
            background-color: #0d6efd;
            color: white;
        }
        
        .step.completed {
            background-color: #198754;
            color: white;
        }
        
        .modal-body {
            padding: 20px 30px;
        }
        
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .form-step.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-check {
            margin-bottom: 15px;
            padding-left: 35px;
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: start;
            gap: 10px;
        }
        
        .form-check-input {
            margin-left: -35px;
        }
        
        .form-check-label {
            display: block;
            padding: 10px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
        }
        
        .form-check-input:checked + .form-check-label {
            border-color: #0d6efd;
            background-color: #f0f8ff;
        }
        
        .form-check-label:hover {
            background-color: #f8f9fa;
        }
        
        .input-field {
            margin-bottom: 20px;
        }
        
        .input-field label {
            color: #666;
            font-size: 0.9rem;
        }
        
        .input-field input {
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            padding: 10px;
            width: 100%;
            transition: border-color 0.3s ease;
        }
        .input-field .form-check-input {
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            padding: 10px;
            width: auto;
            transition: border-color 0.3s ease;
        }
        
        .input-field input:focus {
            border-color: #0d6efd;
            outline: none;
            box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
        }
        
        .error-message {
            color: #dc3545;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }
        
        .file-upload {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }
        
        .file-upload input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .file-upload-label {
            display: block;
            padding: 10px 15px;
            border: 1px dashed #e0e0e0;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .file-upload-label:hover {
            border-color: #0d6efd;
            background-color: #f0f8ff;
        }
        
        .file-name {
            margin-top: 5px;
            font-size: 0.8rem;
            color: #666;
        }
        
        .hide {
            display: none;
        }
        
        .summary-item {
            margin-bottom: 10px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        
        .summary-label {
            font-weight: bold;
            color: #333;
        }