
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
	    text-align : left;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #1a1a1a;
            letter-spacing: -0.01em;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            color: #1a1a1a;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0 rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.06);         

        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            letter-spacing: -0.01em;
        }

        nav a:hover {
            color: #1a1a1a;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: bold;          
            color: #1a1a1a;
        }

        .logo-icon {
            width: 40px;
            height: 40px;            
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .logo-icon img {
            max-height: 100%;
            max-width: 100%;
        }


        /* Hero Section */
        .hero {
            margin-top: 0px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8rem 2rem 6rem;
            text-align: center;

          /* Gradient overlay combined with the background image for text readability */
          background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                            url('hero_img.png');
          
          /* Critical image positioning mechanics */
          background-size: cover;       /* Ensures image scales nicely without stretching */
          background-position: center;   /* Keeps the focal point of the image centered */
          background-repeat: no-repeat;  /* Prevents the image from tiling */	    
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s;
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #667eea;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.2s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            letter-spacing: -0.01em;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: #fafafa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-weight: 700;
            letter-spacing: -0.04em;
        }

        .section-subtitle {
            text-align: center;
            color: #6b7280;
            margin-bottom: 4rem;
            font-size: 1.2rem;
            font-weight: 400;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 1.35rem;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 0.98rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 6rem 2rem;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            font-size: 2rem;
            color: #667eea;
            min-width: 50px;
            background: rgba(102, 126, 234, 0.1);
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-content h3 {
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
        }

        .feature-content p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 0.98rem;
        }

        /* Emergency Banner */
        .emergency-banner {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .emergency-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .emergency-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 1.5rem 0;
            letter-spacing: 0.05em;
        }

        .emergency-banner p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: #fafafa;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .contact-info h3 {
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1.2rem;
            background: #fafafa;
            border-radius: 12px;
        }

        .contact-item-icon {
            font-size: 1.3rem;
            color: #667eea;
            background: rgba(102, 126, 234, 0.1);
            padding: 8px;
            border-radius: 8px;
            min-width: 40px;
            text-align: center;
        }

        .contact-item strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        .contact-item div {
            color: #6b7280;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: rgba(255,255,255,0.8);
            text-align: center;
            padding: 2.5rem;
        }

        footer p {
            font-size: 0.95rem;
            font-weight: 400;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            nav ul {
                display: none;
            }

            .emergency-number {
                font-size: 2.5rem;
            }
        }
    
