:root {
            --primary: #2c5aa0;
            --secondary: #f5a623;
            --dark: #333;
            --light: #f9f9f9;
            --gray: #777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
        }
       p.para {
    text-align: start;
}
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles (should match your existing header) */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        /* Hero Section */
        .services-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('');
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            margin-top: 80px;
        }
        
        .services-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .services-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
         
        }
        
        .section-title h2 {
            text-align: center;
            margin-bottom: 25px;
            font-size: 2.5rem;
            color: var(--primary);
            /* margin-bottom: 15px; */
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            /* max-width: 700px; */
            margin: 0 auto;
        }
        
        .services-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tab-btn {
            padding: 12px 25px;
            background: white;
            color: var(--dark);
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active, .tab-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding-top: 3%;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .service-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .service-link {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            background: var(--secondary);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns:repeat(2, 1fr);
            }
        }
        @media (max-width: 500px) {
          
            
            .services-grid {
                grid-template-columns:repeat(1,1fr);
            }
        }