* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 25px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #1f2937;
            z-index: 1001;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0;
            color: #1f2937;
            transition: color 0.3s ease;
        }

        .logo-text p {
            font-size: 0.85rem;
            margin: 0;
            color: #6b7280;
            transition: color 0.3s ease;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
        }

        .nav-menu a {
            color: #1f2937;
            text-decoration: none;
            font-weight: 600;
            padding: 0.75rem 0;
            position: relative;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #dc2626;
            transform: translateY(-2px);
        }

        .nav-menu a.active::after,
        .nav-menu a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #dc2626, #b91c1c);
            border-radius: 2px;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { width: 0; }
            to { width: 100%; }
        }

        .emergency-call-btn {
            background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .emergency-call-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .emergency-call-btn:hover::before {
            left: 100%;
        }

        .emergency-call-btn:hover {
            background: linear-gradient(135deg, #b91c1c, #991b1b);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        }

        .emergency-call-btn i {
            animation: ring 1.5s infinite;
        }

        @keyframes ring {
            0%, 100% { transform: rotate(0deg); }
            10%, 30% { transform: rotate(-10deg); }
            20% { transform: rotate(10deg); }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            z-index: 1002;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            transform: scale(1.1);
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #1f2937;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 3px;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: #dc2626;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: #dc2626;
        }

        /* Mobile Menu Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
           background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
            box-shadow: -10px 0 30px rgba(0,0,0,0.3);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            overflow-y: auto;
            padding-top: 100px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 1rem 0;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .mobile-menu ul li {
            margin: 0;
            transform: translateX(50px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active ul li {
            transform: translateX(0);
            opacity: 1;
        }

        .mobile-menu.active ul li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active ul li:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu.active ul li:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu.active ul li:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu.active ul li:nth-child(5) { transition-delay: 0.3s; }
        .mobile-menu.active ul li:nth-child(6) { transition-delay: 0.35s; }

        .mobile-menu ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.25rem 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: width 0.3s ease;
        }

        .mobile-menu ul li a:hover::before {
            width: 100%;
        }

        .mobile-menu ul li a:hover,
        .mobile-menu ul li a.active {
            background: rgba(255, 255, 255, 0.15);
            border-left-color: white;
            padding-left: 2.5rem;
            transform: translateX(10px);
        }

        .mobile-menu ul li a i {
            font-size: 1.3rem;
            width: 25px;
            text-align: center;
        }

        .mobile-emergency-btn {
            background: white;
            color: #dc2626;
            margin: 2rem;
            padding: 1.25rem 1.75rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            display: flex;
           
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-emergency-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
            transition: left 0.6s;
        }

        .mobile-emergency-btn:hover::before {
            left: 100%;
        }

        /* Hide emergency call button on mobile */
        @media (max-width: 768px) {
            .emergency-call-btn {
                display: none !important;
            }
        }

        .mobile-emergency-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            background: #f8fafc;
        }

        .mobile-emergency-btn i {
            animation: ring 1.5s infinite;
        }



        
 /* end ----------------------------------------------------------------- */
        
       
        .section {
            padding: 5rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #374151;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            color: #dc2626;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #ffffffff;
            margin-bottom: 1rem;
        }

        /* Booking Form ----------------------------------------------*/
        .booking-section {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .booking-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .emergency-alert {
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .emergency-alert-icon {
            color: #dc2626;
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .emergency-alert-content h3 {
            color: #1f2937;
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .emergency-alert-content p {
            color: #6b7280;
            margin: 0 0 1rem 0;
            font-size: 0.95rem;
        }

        .emergency-call-alert-btn {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .emergency-call-alert-btn:hover {
            background: #b91c1c;
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .booking-form-container {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
        }

        .booking-form-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .booking-form-header-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .booking-form-header-icon {
                /* Even smaller on very small screens but maintains perfect circle */
                width: 40px;
                height: 40px;
                min-width: 40px;
                min-height: 40px;
                max-width: 40px;
                max-height: 40px;
                font-size: 1.1rem;
            }

        .booking-form-header h3 {
            color: #1f2937;
            margin: 0;
            font-size: 1.3rem;
        }

        .booking-form-header p {
            color: #6b7280;
            margin: 0;
            font-size: 0.9rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1f2937;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #dc2626;
            background: white;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #b91c1c, #991b1b);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .response-times-card,
        .equipment-card,
        .help-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .card-header-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }

        .response-times-card .card-header-icon {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
        }

        .equipment-card .card-header-icon {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
        }

        .help-card .card-header-icon {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
        }

        .card-header h4 {
            color: #1f2937;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .response-time-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

        .response-time-item:not(:last-child) {
            border-bottom: 1px solid #f3f4f6;
        }

        .response-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .response-badge.emergency {
            background: #fee2e2;
            color: #dc2626;
        }

        .response-badge.non-emergency {
            background: #dbeafe;
            color: #3b82f6;
        }

        .response-badge.scheduled {
            background: #d1fae5;
            color: #10b981;
        }

        .equipment-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .equipment-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: #4b5563;
            font-size: 0.9rem;
        }

        .equipment-list li::before {
            content: '•';
            color: #10b981;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .help-card-content {
            text-align: center;
        }

        .help-card p {
            color: #6b7280;
            margin: 0 0 1rem 0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .help-phone {
            font-size: 1.2rem;
            font-weight: bold;
            color: #1f2937;
            margin: 0.5rem 0;
        }

        /* About Us 00000000000000000000000000000000000000000000000000000000000000000000000 */
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
            padding: 80px 0;
            text-align: center;
        }
        
        .trust-badge {
            background: #fff;
            color: #dc3545;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 40px;
            border: 2px solid #dc3545;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #2c3e50;
        }
        
        .hero-title .mission {
            color: #dc3545;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .stat-card {
            background: white;
            padding: 40px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #dc3545;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #6c757d;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Mission Section */
        .mission-section {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
            padding: 80px 0;
            margin: 80px 0;
            border-radius: 20px;
            text-align: center;
            color: white;
        }
        
        .mission-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .mission-text {
            font-size: 1.3rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        /* Values Section */
        .values-section {
            padding: 0px 0;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 60px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc3545, #6f42c1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
        }
        
        .value-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .value-description {
            color: #6c757d;
            line-height: 1.6;
        }
        
        /* Team and Certifications */
        .bottom-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .info-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
        }
        
        .info-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        /* Perfect Info Icon - FIXED VERSION */
        .info-icon {
            /* Fixed dimensions to prevent distortion */
            width: 40px;
            height: 40px;
            min-width: 40px;
            min-height: 40px;
            max-width: 40px;
            max-height: 40px;
            
            /* Maintain aspect ratio */
            aspect-ratio: 1 / 1;
            
            /* Gradient background */
            background: linear-gradient(135deg, #dc3545, #007bff);
            
            /* Border radius */
            border-radius: 10px;
            
            /* Perfect centering */
            display: flex;
            align-items: center;
            justify-content: center;
            
            /* Icon styling */
            color: white;
            font-size: 18px;
            
            /* Prevent shrinking/growing */
            flex-shrink: 0;
            flex-grow: 0;
            
            /* Prevent any overflow issues */
            overflow: hidden;
            
            /* Smooth transitions */
            transition: all 0.3s ease;
            
            /* Ensure it stays inline when needed */
            display: inline-flex;
        }
        
        .info-description {
            color: #6c757d;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .feature-list {
            list-style: none;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .check-icon {
            width: 24px;
            height: 24px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            flex-shrink: 0;
        }
        
        .cert-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .cert-badge {
            width: 32px;
            height: 32px;
            background: #007bff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        /* Call Button */
        .floating-call {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #dc3545;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 1000;
        }
        
        .floating-call:hover {
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .stat-card {
                padding: 30px 15px;
            }
            
            .mission-text {
                font-size: 1.1rem;
            }
            
            .bottom-section {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* Vehicles ------------------------------------------------- */
        /* Vehicles Section */
        .vehicles-section {
            padding: 0px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 60px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* Image Gallery */
        .vehicles-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .vehicle-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            background: #ffffff;
        }
        
        .vehicle-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .vehicle-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .vehicle-image:hover img {
            transform: scale(1.05);
        }
        
        /* Image Overlay */
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .vehicle-image:hover .image-overlay {
            transform: translateY(0);
        }
        
        .overlay-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .overlay-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Modal for full image view */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            /* backdrop-filter: blur(5px); */
        }
        
        .modal-content {
            margin: auto;
            display: block;
            width: 90%;
            max-width: 800px;
            max-height: 90%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 10px;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #fff;
            font-size: 3rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: #dc3545;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }
            
            .vehicles-gallery {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .vehicle-image img {
                height: 220px;
            }
            
            .vehicles-section {
                padding: 0px 0;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }
            
            .vehicle-image img {
                height: 200px;
            }
        }

        /* Contact ------------------------------------------*/


        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            color: #374151;
            font-weight: 700;
        }

        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: #f9fafb;
            padding: 2rem;
            border-radius: 15px;
        }

        .contact-info h3 {
            margin-bottom: 1.5rem;
            color: #374151;
            font-size: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: #dc2626;
            margin-right: 1rem;
            width: 30px;
            flex-shrink: 0;
        }

        .contact-item div {
            flex: 1;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            transition: all 0.3s ease;
            text-align: center;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            transform: translateY(-2px);
        }

        /* Booking Form */
        .booking-form {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .booking-form h3 {
            margin-bottom: 1.5rem;
            color: #374151;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #374151;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #dc2626;
        }

        .cta-button {
            background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
        }

        /* Map Container */
        .map-container {
            background: #e5e7eb;
            height: 300px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 1.2rem;
            margin-top: 3rem;
            text-align: center;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 15px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .section {
                padding: 2rem 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 2rem;
            }

            .contact-info {
                padding: 1.5rem;
            }

            .contact-info h3 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .contact-item {
                margin-bottom: 1rem;
                align-items: flex-start;
            }

            .contact-item i {
                margin-top: 0.2rem;
                font-size: 1.3rem;
            }

            .whatsapp-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                display: block;
                text-align: center;
                width: 100%;
            }

            .booking-form {
                padding: 1.5rem;
            }

            .booking-form h3 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .form-group {
                margin-bottom: 1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.6rem;
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .map-container {
                height: 250px;
                margin-top: 2rem;
                font-size: 1rem;
            }
        }

        /* Extra Small Mobile (375px and below) */
        @media (max-width: 375px) {
            .container {
                padding: 0 0.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .contact-info {
                padding: 1rem;
            }

            .contact-info h3 {
                font-size: 1.2rem;
            }

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                margin-bottom: 1.2rem;
            }

            .contact-item i {
                margin-bottom: 0.5rem;
                margin-right: 0;
                width: auto;
            }

            .contact-item div {
                width: 100%;
            }

            .whatsapp-btn {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
                margin-top: 0.8rem;
            }

            .booking-form {
                padding: 1rem;
            }

            .booking-form h3 {
                font-size: 1.2rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.5rem;
                font-size: 0.85rem;
            }

            .cta-button {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
            }

            .map-container {
                height: 200px;
                margin-top: 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .social-links {
            margin: 1rem 0;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #dc2626;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 3px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #1f2937;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .emergency-number {
                font-size: 2rem;
            }
            
            .contact-grid,
            .booking-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-container {
                padding: 0 1rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .logo-text h1 {
                font-size: 1.2rem;
            }

            .logo-text p {
                font-size: 0.7rem;
            }

            .emergency-call-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .booking-container {
                padding: 0 1rem;
            }

            .booking-form-container {
                padding: 1.5rem;
            }

            .sidebar {
                order: -1;
            }
        }

        /* Background colors for sections */
        .services { background: #f9fafb; }
        .vehicles { background: #f9fafb; }










         /* Services Section ------------------------------------------------- */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .emergency-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }
        
        .emergency-btn {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .emergency-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
        }
        
        .book-btn {
            background: white;
            color: #2c3e50;
            border: 2px solid #e9ecef;
        }
        
        .book-btn:hover {
            border-color: #dc3545;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Service Cards Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .service-header {
            padding: 30px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .service-header.bls {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
        }
        
        .service-header.als {
            background: #007bff;
        }
        
        .service-header.icu {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
        }
        
        .service-header.transfer {
            background: #28a745;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            color: white;
            background: rgba(255,255,255,0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .service-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .service-timing {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 5px;
        }
        
        .timing-badge {
            background: rgba(255,255,255,0.2);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .service-price {
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .service-body {
            padding: 30px;
        }
        
        .service-description {
            color: #6c757d;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .equipment-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .equipment-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .equipment-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            color: #495057;
        }
        
        .check-icon {
            width: 20px;
            height: 20px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            flex-shrink: 0;
        }
        
        .service-actions {
            display: flex;
            gap: 15px;
        }
        
        .btn-book {
            background: white;
            color: #2c3e50;
            border: 2px solid #e9ecef;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            flex: 1;
        }
        
        .btn-book:hover {
            border-color: #dc3545;
            color: #dc3545;
        }
        
        .btn-call {
            background: linear-gradient(135deg, #dc3545 0%, #6f42c1 50%, #007bff 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            flex: 1;
        }
        
        .btn-call:hover {
            background: #c82333;
            transform: translateY(-2px);
        }
        
        /* Additional Services */
        .additional-services {
            text-align: center;
        }
        
        .additional-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 50px;
        }
        
        .additional-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .additional-card {
            background: white;
            padding: 40px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease;
        }
        
        .additional-card:hover {
            transform: translateY(-5px);
        }
        
        .additional-icon {
            width: 50px;
            height: 50px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 20px;
        }
        
        .additional-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
        }
        
        /* Floating Call Button */
        .floating-call {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #dc3545;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 1000;
            text-decoration: none;
        }
        
        .floating-call:hover {
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .emergency-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .service-header {
                padding: 20px;
            }
            
            .service-info h3 {
                font-size: 1.4rem;
            }
            
            .service-body {
                padding: 20px;
            }
            
            .additional-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .additional-grid {
                grid-template-columns: 1fr;
            }
            
            .service-actions {
                flex-direction: column;
            }
        }
 



        /* Hero Section ------------------------------------------------------ */
        .ems-hero-wrapper {
            min-height: 100vh;
            background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .ems-hero-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .ems-service-badge {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            padding: 0.75rem 1.5rem;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            animation: emsSlideDown 0.8s ease-out;
        }

        .ems-main-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            color: white;
            margin-bottom: 2rem;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: emsSlideUp 1s ease-out 0.2s both;
        }

        .ems-description-text {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
            font-weight: 400;
            animation: emsSlideUp 1s ease-out 0.4s both;
        }

        .ems-action-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 3rem;
            animation: emsSlideUp 1s ease-out 0.6s both;
        }

        .ems-call-btn {
            background: white;
            color: #dc2626;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .ems-call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            background: #f8f8f8;
        }

        .ems-quote-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .ems-quote-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .ems-features-grid {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: emsSlideUp 1s ease-out 0.8s both;
        }

        .ems-feature-item {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .ems-feature-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-1px);
        }

        .ems-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .ems-phone-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        @keyframes emsSlideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes emsSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .ems-action-buttons {
                flex-direction: column;
                align-items: center;
            }

            .ems-call-btn,
            .ems-quote-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .ems-features-grid {
                gap: 1rem;
            }

            .ems-feature-item {
                font-size: 0.9rem;
                padding: 0.6rem 1.2rem;
            }
        }