        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-display: swap; 
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

/* ------------------------------------------------------------------*/        
        /* Navigation Menu */
        .nav-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        
        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 1001;
            padding: 20px 20px 20px;
        }
        
        .nav-menu.active {
            right: 0;
        }
        
        .nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        
        .nav-item {
            display: block;
            color: #333;
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 500;
            font-size: 0.95rem;
            line-height: 1.2;    
        }
        
        .nav-item:hover {
            color: #1e3c72;
        }
        
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
 /* ------------------------------------------------------------------*/       
        /* Header */
        .header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 20px 15px; /* Adjust padding if buttons make it too cramped */
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            /* Removed position: relative; here as discussed */
        }
        
        .logo {
            text-align: center;
            margin-bottom: 10px;
        }
        .logo a {
            color: white;
            text-decoration: none;
        }
        .logo img {
            height: 50px;
            width: auto;
        }
        .logo-d img {
            height: 90px;
            width: auto;
        }
        
        .tagline {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .breadcrumb {
            position: absolute;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: #ffffff;
            width: 100%;
            box-sizing: border-box;
            top: 100px;
            left: 0px;
            font-size: 0.85rem;
            opacity: 0.9;
            padding-bottom: 5;
            margin-top: 10px;
        }

        .breadcrumb a {
          color: #ffffff;
          text-decoration: underline;
          margin-right: 0.25rem;
            
        }

        .breadcrumb a:hover {
          text-decoration: none;
        }
/* ------------------------------------------------------------------*/
        /* NEW: Header Buttons Container */
        .header-buttons {
            display: flex;
            justify-content: space-around; /* Distributes items evenly */
            align-items: center;
            margin-top: 15px; /* Space from tagline */
            gap: 10px; /* Space between buttons */
            padding: 0 5px; /* A little horizontal padding if needed */
        }
/* ------------------------------------------------------------------*/
        /* NEW: Header Button Base Styles */
        .header-btn {
            background: #ff6b35;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            transition: background 0.3s ease;
            white-space: nowrap; /* Prevent text wrapping on small buttons */
        }
       .cta-button {
            background: #ff6b35;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin: 10px;
            transition: background 0.3s ease;
        }
        
        .cta-button:hover {
            background: #e55a2b;
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .cta-button.secondary:hover {
            background: white;
            color: #2c5aa0;
        }
        /* NEW: Call Button Style */
        .call-btn {
            background: #ff6b35; 
            color: white;
        }
        .call-btn:hover {
            background: #EB6331; 
            transform: translateY(-1px);
        }

        /* NEW: Quote Button Style */
        .quote-btn {
            background: white; /* White background */
            color: #1e3c72; /* Dark blue text from your brand */
            border: 2px solid #1e3c72; /* Dark blue border */
        }
        .quote-btn:hover {
            background: #e9ecef; /* Slightly grey on hover */
            transform: translateY(-1px);
        }
        section {
          margin: 0;
          padding: 0;
        }

        section h2 {
          font-size: 1.5em;
          margin-bottom: 0.5em;
        }

        .checklist li,
        .equipment-list li,
        .city-tags li {
          margin-bottom: 0.3em;
        }

        ol {
          padding-left: 1.5em;
          margin-bottom: 1em;
        }

        .city-tags {
          display: flex;
          flex-wrap: wrap;
          gap: 0.5em;
          list-style: none;
          padding: 0;
        }

        .city-tags li {
          background: #f2f2f2;
          padding: 0.3em 0.6em;
          border-radius: 4px;
          font-size: 0.95em;
            color: #37568C;
        }

        .cta {
          margin-top: 2em;
          font-weight: bold;
        }

        .cta a {
          color: #004aad;
          text-decoration: underline;
        }

        .desktop-only ul,
        .desktop-only ol {
          list-style: none;
          padding-left: 0;
          margin-left: 0;
        }


/* ------------------------------------------------------------------*/
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(30,60,114,0.9), rgba(42,82,152,0.9)), 
             url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f0f0f0" width="100" height="100"/><path fill="%23ddd" d="M20 20h15v15H20zm25 0h15v15H45zm25 0h15v15H70zM20 45h15v15H20zm25 0h15v15H45zm25 0h15v15H70z"/></svg>');
            color: white;
            padding: 10 px 15px;
            text-align: center;
            margin: 0px;
        }
        
        .hero h1 {
            font-size: 1.8rem;
            padding-top: 40px;
            line-height: 1.3;
        }
        
        .hero p {
            font-size: 1rem;
            margin-bottom: 25px;
            opacity: 0.95;
        }
        
        .cta-phone {
            background: #ff6b35;
            color: white;
            text-decoration: none;
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(40,167,69,0.3);
        }
        
        .cta-phone:hover {
            background: #EB6331;
            transform: translateY(-2px);
        }
        
        .emergency-note {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 10px;
        }

/* ------------------------------------------------------------------*/        
        /* Services Grid */
        .services {
            padding: 10px 15px;
            background-color: rgba(255, 150, 51, 0.58);
        }
        
        .section-title {
            text-align: center;
            color: #1e3c72;
            margin-bottom: 25px;
        }
         .section-title h1 {
            font-size: 2.5rem; 
        }
         .section-title h2 {
            font-size: 1.5rem; 
        }
        .service-grid {
            display: grid;
            gap: 20px;
            padding-bottom: 30px;
            margin-bottom: 10px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            margin-bottom: 15px;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: #f8f9fa;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e3c72;
            font-size: 1.5rem;
        }
        
        .service-card h3 {
            color: #1e3c72;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }
  /* ------------------------------------------------------------------*/      
        /* Why Choose Us */
        .why-choose {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            padding: 30px 15px;
            margin: 20px 0;
            
        }
        
        .feature-list {
            list-style: none;
            padding: 20;
            margin-top: 20px;
            max-width: 800px;
            width: 100%;
            margin: 0 auto;  
            padding-left: 30px;
        }
        
        .feature-list li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid #f0f0f0;
            font-size: 1rem;
            line-height: 1.5;
            width: 150%; /* or a fixed pixel value */
            margin: 0 auto;
            vertical-align: middle;
            padding-left: 80px;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .check-icon {
            color: #28a745;
            font-size: 1.2rem;
            margin-right: 15px;
            font-weight: bold;
            min-width: 20px;
        }
        .x-icon {
            color: #fd0606;
            font-size: 1.2rem;
            margin-right: 15px;
            font-weight: bold;
            min-width: 20px;
        }
/* ------------------------------------------------------ */
    .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
       
        }
    .container p {
            padding-bottom: 15px;
       
        }
        .center  {
            display: flex;
            justify-content: center; /* Centers horizontally */
            align-items: center;    /* Centers vertically */
        }
        .hero-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
              position: sticky;
        }
        .collapse-content {
            display: none;
        }
        
        .collapse-content.open {
            display: block;
        }
        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 200px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }
        
        .content-section {
            background: white;
            padding: 10px 40px;
            margin-bottom: 5px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            min-height: 600px;
        }
        
        .intro-text {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 50px;
            color: #444;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-title-mobile {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .section-title-mobile::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #2a5298;
            margin: 15px auto 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: #1e3c72;
            text-align: center;
            position: relative;
        }
        
        .section-title2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #2a5298;
            margin: 15px auto 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin-bottom: 50px;
            padding-bottom: 20px;
        }
        
        .service-item {
            padding: 35px;
            border: 1px solid #e1e8ed;
            border-radius: 12px;
            background: #fdfdfd;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 10px;
        
        }
        
        .service-item:hover {
            border-color: #2a5298;
            box-shadow: 0 8px 25px rgba(42, 82, 152, 0.1);
            transform: translateY(-2px);
        }
        
        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
        }
        
        .service-title {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            padding-bottom: 20px;
            color: #1e3c72;
        }
        
        .service-description {
            color: #555;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        .expertise-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 10px 40px;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .expertise-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #2a5298;
            margin-bottom: 20px;
            margin-top: 10px;
        }
        
        .expertise-item h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e3c72;
        }
        
        .expertise-item p {
            color: #666;
            line-height: 1.6;
        }
        .expertise-item a {
            color: navy;
            line-height: 1.6;
            text-decoration:underline;
        }               
        .benefits-section {
            background: white;
            padding: 10px 80px 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top:04px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            padding: 5px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        
        .check-icon {
            color: #28a745;
            font-size: 1.0rem;
            margin-top: 15;
            flex-shrink: 0;
            background: white;
            padding: 8px;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
        }
         .check-icon-red {
            color: #ff0b0f;
            font-size: 1.4rem;
            font: bold;
            margin-top: 3px;
            flex-shrink: 0;
            background: white;
            padding: 8px;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
        }       
        .benefit-content h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0px;
            margin-top: 15px;
            color: #1e3c72;
        }
        
        .benefit-content p {
            color: #1e3c72;
            line-height: 1.5;
            font-size: 0.95rem;
            margin-left:30px;
            padding-left: 30px;
        }
        




 /* ------------------------------------------------------------------*/       
        /* Quick Quote Form */
        .quick-quote {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 30px 15px;
            margin: 20px 0;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            background: rgba(255,255,255,0.95);
        }
        
        .form-group textarea {
            height: 80px;
            resize: vertical;
        }
        
        .submit-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            width: 100%;
            cursor: pointer;
        }
 /* ------------------------------------------------------------------*/       
        /* Major Markets */
        .markets {
            padding: 30px 15px;
            background: #fff;
        }
        
        .market-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr; /* Default = 1 column for mobile */
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 15px;
        }
        
        .market-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #1e3c72;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .market-card h3 {
            color: #1e3c72;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .market-card a { 
            color: #0077cc;
            text-decoration: none;
        }
        .market-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        .market-card:hover {
            transform: translateY(-3px);
            background: beige;
        }
        .market-accordion {
          padding: 1rem;
        }

        .market-accordion details {
          border: 1px solid #ddd;
          border-radius: 6px;
          margin-bottom: 12px;
          padding: 0.75rem;
          background: #fff;
          transition: box-shadow 0.2s ease;
        
        }

        .market-accordion details[open] {
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.00);
          background: beige;
          
        }

        .market-accordion summary {
          font-weight: bold;
          font-size: 1.1rem;
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          list-style: none;
        }

        .market-accordion summary::-webkit-details-marker {
          display: none;
        }

        .market-accordion summary a {
          color: #0077cc;
          text-decoration: none;
        }

        .market-accordion summary a:hover {
          text-decoration: underline;
        }

        .market-accordion p {
          margin-top: 0.5rem;
          font-size: 0.95rem;
          color: #333;
        }
 /* ------------------------------------------------------------------*/     
        /* Service Area Map */
        .map-section {
          max-width: 1000px;
          margin: 2rem auto;
          text-align: center;
          padding: 1rem;
          font-family: Tahoma, sans-serif;
            font-display: swap;
        }

        .map-section h2 {
          font-size: 1.8rem;
          color: #22447F;
          margin-bottom: 0.5rem;
        }

        .map-section p {
          font-size: 1rem;
          color: #333;
          margin-bottom: 1.5rem;
        }

        .map-wrapper {
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .map-wrapper img {
          max-width: 100%;
          height: auto;
          border: 1px solid #ccc;
          border-radius: 6px;
          box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
.content-block {
    padding-left: 20px;
}
 /* ------------------------------------------------------------------*/     
        /* Contact Section */
        .contact {
            background: white;
            padding: 30px 15px;
            text-align: center;
        }
        
        .contact-info {
            display: grid;
            gap: 20px;
            margin-top: 20px;
            max-width: 400px;
            margin: 0 auto;
            margin-right: auto;
        }
        
        .contact-item {
            margin:10px 0;
            padding: 5px;
            background: #f8f9fa;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .contact-item p {
            font-size: 0.95rem;
            color: #333;
            margin: 0;
        }
        .contact-item strong {
            color: #1e3c72;
            display: block;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

 /* ------------------------------------------------------------------*/       
        /* Footer */
        .footer {
            background: #1e3c72;
            color: white;
            padding: 20px 15px;
            text-align: center;
        }
        
        .footer-links {
            margin: 15px 0;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 0.9rem;
        }
 /* ------------------------------------------------------------------*/       
        /* Animations */
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            background: beige;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .cta-phone {
            transition: all 0.3s ease;
        }
 /* ------------------------------------------------------------------*/       
        /* Floating Action Button */
        .fab {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #28a745;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(40,167,69,0.4);
            z-index: 1000;
            animation: pulse 2s infinite;
        }
/* ------------------------------------------------------------------*/

        .has-submenu > span {
            display: block;
            cursor: pointer;
            color: #1e3c72;
            font-weight: bold;
            padding: 6px 0;
            font-size: 0.95rem;
            line-height: 1.2;
            border-bottom: 1px solid #f0f0f0;
        }

        .submenu {
            display: none;
            flex-direction: column;
            margin-left: 15px;
        }

        .submenu a {
            padding: 6px 0 6px 12px;
            color: #333;
            font-size: 0.95rem;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
        }

        .submenu a:hover {
            color: #1e3c72;
        }
        .has-submenu span::after {
            content: " +";
            float: right;
            font-weight: normal;
            transition: transform 0.3s ease;
        }

        .has-submenu.open span::after {
            content: " –";
        }
        .nav-group {
          margin-bottom: 5px;
          margin-top: 15px;
        }

        .nav-item.has-submenu {
          margin-bottom: 0;
        }
        
        .submenu a {
          padding: 10px 0 15px 10px; /* Indent submenu items slightly */
        }
        @keyframes pulse {
            0% { box-shadow: 0 4px 20px rgba(40,167,69,0.4); }
            50% { box-shadow: 0 4px 30px rgba(40,167,69,0.6); }
            100% { box-shadow: 0 4px 20px rgba(40,167,69,0.4); }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-display: swap;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

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

        .p-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .p-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
            opacity: 0.3;
        }

        .p-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .p-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .p-main {
            padding: 60px 0;
        }

        .p-section {
            margin-bottom: 60px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .p-section:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        .p-section-header {
            background: linear-gradient(135deg, #64748b 0%, #475569 100%);
            color: white;
            padding: 30px;
            position: relative;
        }

        .p-section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .p-section-intro {
            font-size: 1.1rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .p-section-content {
            padding: 40px 30px;
        }

        .p-service-card {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .p-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #3b82f6, #1e40af);
            transition: width 0.3s ease;
        }

        .p-service-card:hover {
            background: #f1f5f9;
            border-color: #3b82f6;
            transform: translateX(8px);
        }

        .p-service-card:hover::before {
            width: 8px;
        }

        .p-service-card h3 {
            color: #1e40af;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .p-service-card p {
            color: #475569;
            line-height: 1.6;
        }
        .map-image {
            width: 100%;
            height: auto;  /* Maintains the aspect ratio */
            align-content: center;
        }
        .p-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .p-benefit-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .p-benefit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .p-benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
            border-color: #3b82f6;
        }

        .p-benefit-card:hover::before {
            transform: scale(1);
        }

        .p-benefit-card h3 {
            color: #1e40af;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .p-benefit-card p {
            color: #475569;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .p-cta-section {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .p-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .p-cta-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .p-cta-text {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .p-cta-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .p-cta-list li {
            font-size: 1.1rem;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .p-cta-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }

        .p-phone-number {
            color: #fbbf24;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .p-phone-number:hover {
            color: #f59e0b;
        }

        @media (max-width: 768px) {
            .p-container {
                padding: 0 15px;
            }

            .p-title {
                font-size: 2.2rem;
            }

            .p-subtitle {
                font-size: 1rem;
            }

            .p-section-content {
                padding: 30px 20px;
            }

            .p-benefits-grid {
                grid-template-columns: 1fr;
            }

            .p-service-card {
                padding: 20px;
            }

            .p-cta-section {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .p-title {
                font-size: 1.8rem;
            }

            .p-section-title {
                font-size: 1.6rem;
            }

            .p-service-card h3 {
                font-size: 1.2rem;
            }
        }
/* ------------------------------------------------------------------*/
/* --- NEW: Desktop Navigation Styles --- */
        .desktop-nav {
            display: none; /* Hidden by default on mobile */
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            padding: 0 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%; /* Ensure it spans full width */
            position: sticky; /* Makes it sticky on desktop if needed */
            top: 0;
            z-index: 99; /* Below mobile menu, but above content */
        }

        .desktop-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex; /* Makes main menu items horizontal */
            justify-content: center; /* Centers the menu items */
        }

        .desktop-nav ul li {
            position: relative; /* Essential for dropdown positioning */
            margin: 0;
            padding: 0;
        }

        .desktop-nav ul li a {
            display: block; /* Make the entire link clickable */
            padding: 8px 12px;
            color: white;
            text-decoration: none;
            white-space: nowrap; /* Prevent text wrapping */
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .desktop-nav ul li a:hover {
            background-color: #2a5298; /* Lighter blue on hover */
            color: #ff6b35; /* Orange accent on hover */
        }
/* ------------------------------------------------------------------*/
        /* Dropdown specific styles */
        .desktop-nav .dropdown {
            display: none; /* Hide dropdowns by default */
            position: absolute;
            top: 100%; /* Position below the parent menu item */
            left: 0;
            background-color: #2a5298; /* Lighter blue for dropdowns */
            min-width: 240px; /* Ensure dropdowns are wide enough */
            z-index: 1001; /* Ensure dropdown appears above other content, same as mobile menu */
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
            border-radius: 0 0 5px 5px; /* Rounded bottom corners */
            overflow: hidden; /* Helps with border-radius */
            text-align: left; /* Align text left in dropdown */
        }

        .desktop-nav .dropdown li {
            width: 100%; /* Ensure dropdown items take full width */
        }

        .desktop-nav .dropdown li a {
            padding: 8px 12px; /* Adjust padding for dropdown items */
            color: white;
            font-size: 0.9em; /* Slightly smaller font for dropdown */
        }

        .desktop-nav .dropdown li a:hover {
            background-color: #1e3c72; /* Darker blue on hover */
            color: #ff6b35; /* Orange accent on hover */
        }

        /* Show dropdown on hover */
        .desktop-nav ul li:hover > .dropdown {
            display: block;
        }
         /* Style for the dropdown separator */
        .desktop-nav .dropdown .dropdown-separator {
            height: 1px; /* The height of the line */
            background-color: rgba(255, 255, 255, 0.2); /* A subtle white line */
            margin: 5px 0; /* Vertical space above and below the line */
            width: calc(100% - 20px); /* Adjust width to account for padding/margin */
            margin-left: 10px; /* Center the line */
            margin-right: 10px;
        }

        /* Ensure separator doesn't have default li padding or hover effects */
        .desktop-nav .dropdown .dropdown-separator:hover {
            background-color: rgba(255, 255, 255, 0.2); /* Keep background same on hover */
        }
        .desktop-nav .dropdown .dropdown-separator a {
            padding: 0; /* Remove padding from any phantom link inside */
            cursor: default; /* No pointer cursor */
        }

        /* --- Media Queries to control visibility --- */
        /* This is the key: At what width do you want to switch? */
        /* Let's assume 992px as a common desktop breakpoint */

        @media (min-width: 992px) {
            .desktop-nav {
                display: block; /* Show desktop menu on larger screens */
            }

            /* Hide mobile menu elements on desktop */
            .nav-toggle,
            .nav-menu,
            .nav-overlay {
                display: none !important; /* Use !important to override mobile-first styles */
            }

            /* Adjust header padding/layout for desktop if needed */
            .header {
                display: flex; /* Use flexbox for desktop header layout */
                justify-content: space-between;
                align-items: center;
                padding: 15px 40px; /* Adjust padding for desktop */
            }
            .header .logo {
                margin-bottom: 0; /* Remove mobile margin */
            }
            .header .tagline {
                display: none; /* Hide tagline on desktop if preferred */
            }
            .header-buttons {
                margin-top: 0; /* Remove mobile margin */
                justify-content: flex-end; /* Align buttons to the right */
                gap: 15px; /* More space between buttons */
            }
            .header-btn {
                padding: 8px 18px; /* Slightly smaller buttons for desktop header */
                font-size: 15px;
            }
            .hero {
                padding-top: 20px; /* Adjust hero padding if sticky header is taller */
            }
            .services-grid.six-items {
                grid-template-columns: repeat(3, 1fr); /* 3 across only if 6+ items */
            }
        }
           .toggle-btn {
            background-color:#004680; 
            color:white; 
            padding:14px 28px; 
            border-radius:4px; 
            border: none;
            cursor: pointer;
            font-size: 24px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        
        .toggle-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.5s;
        }
        
        .toggle-btn:hover::before {
            left: 100%;
        }
        
        .toggle-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
        }
        
        .toggle-btn:active {
            transform: translateY(0);
        }
         /* ------------------------------------------------------------------*/   
/* ------------------------------------------------------------------*/
/* ------------------------------------------------------------------*/
/* ------------------------------------------------------------------*/
        /* Ensure mobile elements are displayed correctly on smaller screens */
        @media (max-width: 991px) {
            .desktop-nav {
                display: none; /* Hide desktop menu on mobile */
            }
            /* Ensure mobile menu elements are visible (your existing CSS does this by default) */
            .nav-toggle {
                display: block;
            }
            /* The .nav-menu and .nav-overlay will be controlled by your JS active class */
            .header {
                display: block; /* Revert to block layout for mobile */
                padding: 20px 15px;
            }
            .header .logo {
                margin-bottom: 10px;
            }
            .header .tagline {
                display: block;
            }
            .header-buttons {
                justify-content: space-around;
            }
        }
        /* --- Mobile Menu Color Fix (Re-apply colors for mobile specifically) --- */
        @media (max-width: 991px) { /* This matches your mobile breakpoint */
            .nav-menu {
                background: white; /* Ensure background is white */
            }
            .nav-item {
                color: #333; /* Re-apply default text color for mobile menu items */
                border-bottom: 1px solid #f0f0f0; /* Re-apply border */
            }
            .nav-item:hover {
                color: #1e3c72; /* Re-apply hover color */
            }
            .has-submenu > span {
                color: #1e3c72; /* Re-apply color for mobile submenu triggers */
                border-bottom: 1px solid #f0f0f0; /* Re-apply border */
            }
            .submenu a {
                color: #333; /* Re-apply default text color for mobile submenu links */
                border-bottom: 1px solid #f0f0f0; /* Re-apply border */
            }
            .submenu a:hover {
                color: #1e3c72; /* Re-apply hover color for mobile submenu links */
            }
        }
        /* Responsive adjustments for larger mobile screens */
        @media (min-width: 480px) {
           .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 2rem;

            }
                    table, tr, td {
                display: block;
                width: 100%;
            }
            td {
                text-align: left;
                padding: 10px;
                border: none;
                border-bottom: 1px solid #ddd;
            }
        }
        .desktop-only {
          display: none;
            text-align: left;
        }
        .desktop-only .content-wrapper {
          max-width: 800px; /* adjust as needed */
          margin: 0 auto;
          padding: 0 1rem;
          text-align: left;
        }
          .desktop-only .content-wrapper   

        .mobile-only {
          display: block;
        }

        @media (min-width: 768px) {
            .market-grid {
            grid-template-columns: repeat(2, 1fr); /* Two across on small tablets */
            }
            .service-grid {
            grid-template-columns: repeat(2, 1fr); /* Two across on small tablets */
            }
        }
        @media (min-width: 992px) {
            .market-grid {
              grid-template-columns: repeat(3, 1fr); /* Three across on desktop */
            }
            .service-grid {
              grid-template-columns: repeat(3, 1fr); /* Three across on desktop */
            }
            .desktop-only {
            display: block;
            }
            .mobile-only {
                display: none;
            }
            .contact-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }
