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

	body {
		background-color: white;
		color: #333;
		line-height: 1.5;
		padding: 12px;
		font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	}

	/* Container */
	.container {
		max-width: 1400px;
		margin: 0 auto;
		width: 100%;
		background: white;
		border-radius: 12px;
		overflow: hidden;
		border-top: 5px solid #1a237e;
	}
	
	
	
/* ============ LANGUAGE CONTENT ============ */
	/* language visibility */
	.language-content {
		display: none;
	}

	.language-content.active {
		display: block;
	}


	/* ============ LANGUAGE SWITCHER ============ */
	.language-switcher {
		display: flex;
		position: relative;
		gap: 8px;
		background: transparent;
		padding: 12px 16px;
		border-radius: 40px;
		z-index: 1000;
	}

	.lang-btn {
		background: #e8eaf6;
		border: none;
		padding: 8px 20px;
		border-radius: 32px;
		font-weight: 600;
		font-size: 0.85rem;
		cursor: pointer;
		transition: all 0.2s ease;
		color: #4a5568;
		min-width: 65px;
	}

	.lang-btn.active {
		background: #1e3a5f;
		color: white;
	}

	.lang-btn:hover:not(.active) {
		background: #e9ecef;
	}


/* header */
	.Header {
		background:  linear-gradient(135deg, #0f1744 0%, #1a237e 100%);
		color: white;
		padding: 20px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 24px;
		justify-content: center;
	}

	.header-content {
		flex: 1;
	}

	/* Logo styling */
	.logo-img { 
		width: 100px;
		height: 100px;
		border-radius: 10%;
		object-fit: cover;
		border: 3px solid #d4af37;
		object-fit: cover;
		}


	.headline {
		font-size: 2.0rem;
		font-weight: 800;
	}

	.subheading {
      font-size: 1.2rem;
      opacity: 0.9;
	}

	.tagline {
		font-size: 1.5rem;
		font-style: italic;
		color: #ffd966;
		margin-top: 8px;
		font-weight: 500;
	}

	.lawyer-photo {
		width: 160px;
		height: 210px;
		object-fit: cover;
		border-radius: 20px;
		border: 4px solid rgba(255,255,255,0.2);
	}

	/* body */
	.body {
		padding: 24px 20px;
		background: #fafafc;
	}

	.intro-text {
		font-size: 1.1rem;
		margin-bottom: 30px;
		color: #444;
		line-height: 1.8;
		text-align: justify;
	}

	.highlight-text {
		color: #1a237e;
		font-weight: 600;
	}

	.section-title {
		font-size: 1.6rem;
		color: #1a237e;
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: 2px solid #c5cae9;
		font-weight: 700;
		position: relative;
	}


	.section-title:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 70px;
		height: 3px;
		background: #d4af37;
	}

	/* PRACTICE AREAS */


	.content-section {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-bottom: 40px;
	}

	.focus-areas,
	.why-choose {
		flex: 1;
		min-width: 300px;
	}

	.area-list {
		list-style: none;
	}

	.area-list li {
		margin-bottom: 30px;
		padding-left: 25px;
		position: relative;
	}

	.area-list li:before {
		content: "•";
		color: #d4af37;
		font-size: 1.5rem;
		position: absolute;
		left: 0;
		top: -5px;
	}



	/* Blog Section */
	.blog-section {
		margin: 30px 0;
		padding: 20px 0;
		border-top: 1px solid #eee;
		text-align: justify;
	}

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

	.blog-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	@media (min-width: 768px) {
		.blog-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (min-width: 1024px) {
		.blog-grid {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	.blog-card {
		background: #f8faff;
		border-radius: 24px;
		padding: 20px;
		box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
		border-left: 5px solid #0b1e4e;
		transition: 0.15s;
		text-align: justify;
	}

	.blog-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
	}

	.blog-image {
		height: 220px;
		overflow: hidden;
		position: relative;
	}

	.blog-image img {
		width: 100%;
		height: 180px;
		object-fit: cover;
		border-radius: 16px;
		margin-bottom: 12px;
	}

	.blog-card:hover .blog-image img {
		transform: scale(1.05);
	}

	.blog-content {
		padding: 20px;
		flex-grow: 1;
		display: flex;
		flex-direction: column;
	}

	.blog-content h3 {
		color: #1a237e;
		font-size: 1.4rem;
		margin-bottom: 15px;
		line-height: 1.4;
	}

	.blog-meta {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		font-size: 0.85rem;
		color: #4a4a5a;
		margin: 8px 0 10px;
	}

	.blog-meta span {
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.blog-excerpt {
		color: #555;
		line-height: 1.6;
		margin-bottom: 25px;
		flex-grow: 1;
	}

	.read-more {
		display: flex;
		align-items: center;
		gap: 8px;
		background: #2a8c5a;
		color: white;
		font-weight: 600;
		text-decoration: none;
		margin: 8px 0 0;
		border-radius: 40px;
		padding: 4px 14px;
	}

	.read-more:hover {
		color: yellow;
		gap: 12px;
	}

	/* Case Studies */
	.case-studies-section {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: justify;
	}

	@media (min-width: 768px) {
		.case-studies-section {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	.case-study-card {
		background: #f8faff;
		border-radius: 24px;
		padding: 20px;
		box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
		border-left: 5px solid #0b1e4e;
		transition: 0.15s;
		text-align: justify;
	}

	.case-study-card:hover {
		transform: translateX(5px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	}

	.case-study-header {
		display: flex;
		align-items: center;
		margin-bottom: 15px;
		border-bottom: 1px solid #ddd;
		padding-bottom: 10px;
	}

	.case-icon {
		font-size: 24px;
		color: #1a237e;
		margin-right: 15px;
	}

	.case-study-header h3 {
		color: #1a237e;
		margin: 0;
		font-size: 1.3rem;
	}

	.case-study-content p {
		margin-bottom: 10px;
		line-height: 1.6;
	}

	.outcome-badge {
		background: #2a8c5a;
		color: white;
		padding: 4px 14px;
		border-radius: 40px;
		font-size: 0.8rem;
		display: inline-block;
		margin: 8px 0 0;
	}


	/* Testimonials */
	.testimonials-section {
		background: #f8f9fa;
		padding: 20px;
		border-radius: 8px;
		margin: 20px 0;
		text-align: justify;
	}

	.testimonials-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	@media (min-width: 768px) {
		.testimonials-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (min-width: 1024px) {
		.testimonials-grid {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	.testimonial-card {
		background: #f8faff;
		border-radius: 24px;
		padding: 20px;
		box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
		border-left: 5px solid #0b1e4e;
		transition: 0.15s;
		text-align: justify;
	}

	.testimonial-content i {
		color: #1a237e;
		opacity: 0.3;
		font-size: 20px;
	}

	.testimonial-author {
		margin-top: 10px;
		color: #666;
	}


	/* Fee Structure */
        .fee-structure-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 28px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 12px 28px rgba(0,0,0,0.05);
        }
        .fee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 28px;
            margin: 30px 0;
        }
        .fee-card {
            background: #eef2ff;
            border-radius: 24px;
            padding: 24px;
            transition: transform 0.2s;
            border-top: 5px solid #1a237e;
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
        }
        .fee-card.gold {
            border-top-color: #d4af37;
        }
        .fee-icon {
            font-size: 2.5rem;
            color: #1a237e;
            text-align: center;
            margin-bottom: 15px;
        }
        .fee-card h3 {
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 12px;
            color: #1e293b;
        }
        .price {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            color: #d4af37;
            margin: 12px 0;
        }
        .price small {
            font-size: 0.9rem;
            font-weight: normal;
            color: #475569;
        }
        .fee-features {
            list-style: none;
            margin: 18px 0;
        }
        .fee-features li {
            margin: 12px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .fee-features i.fa-check-circle {
            color: #1a237e;
        }
        .pay-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #0f2b3d;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
            transition: 0.2s;
            margin-top: 16px;
            text-decoration: none;
        }
        .pay-btn i {
            font-size: 1rem;
        }
        .pay-btn:hover {
            background: #1a237e;
            transform: scale(0.98);
        }
        .disclaimer-text {
            background: #f1f5f9;
            padding: 15px;
            border-radius: 18px;
            font-size: 0.85rem;
            text-align: center;
            margin-top: 28px;
        }
        .urdu-content {
            font-family: 'Noto Nastaliq Urdu', serif;
            direction: rtl;
            text-align: right;
        }
        .urdu-content .fee-features li {
            justify-content: flex-end;
            flex-direction: row-reverse;
        }

	/* contact */
	.contact-section {
		background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
		padding: 40px;
		border-radius: 8px;
		margin: 40px 0;
		text-align: center;
	}

	.contact-title {
		font-size: 1.8rem;
		color: #1a237e;
		margin-bottom: 20px;
	}

	.contact-details {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
		margin-bottom: 30px;
	}

	.contact-item {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 1.1rem;
	}

	.contact-icon {
		color: #d32f2f;
		font-size: 1.2rem;
	}

	/* CTA */
	.cta-button-container {
		margin: 30px 0;
		text-align: center;
	}

	.consultation-btn {
		display: inline-block;
		background: linear-gradient(to right, #FF9800, #FF5722);
		color: white;
		padding: 18px 45px;
		font-size: 1.3rem;
		font-weight: 700;
		border-radius: 50px;
		text-decoration: none;
		transition: 0.3s;
		border: none;
		cursor: pointer;
		box-shadow: 0 6px 15px rgba(255, 87, 34, 0.4);
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.consultation-btn:hover {
		background: linear-gradient(to right, #F57C00, #E64A19);
		transform: translateY(-5px);
		box-shadow: 0 10px 20px rgba(255, 87, 34, 0.5);
	}

	.consultation-btn i {
		margin-right: 10px;
	}























	/* Consultation Form Styles */
	.consultation-form-section {
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
		padding: 40px 30px;
		border-radius: 15px;
		margin: 40px 0;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		border-top: 5px solid #1a237e;
	}


	.form-title {
		color: #1a237e;
		font-size: 2.0rem;
		text-align: center;
		margin-bottom: 10px;
	}

	.form-subtitle {
		color: #666;
		text-align: center;
		margin-bottom: 30px;
		font-size: 1rem;
	}

	.form-row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		margin-bottom: 24px;
	}

	.form-group {
		margin-bottom: 20px;
	}

	.form-group label {
		display: block;
		margin-bottom: 8px;
		color: #1e293b;
		font-weight: 600;
		font-size: 0.9rem;
	}

	.form-group label i {
		color: #d4af37;
		margin-right: 8px;
	}

		
	.form-group input,
	.form-group select,
	.form-group textarea {
		width: 100%;
		padding: 12px 16px;
		border: 1px solid #e2e8f0;
		border-radius: 10px;
		font-family: inherit;
		font-size: 0.95rem;
		transition: border-color 0.2s;
		background: #f9f9f9;
	}

	.form-group input:focus,
	.form-group select:focus,
	.form-group textarea:focus {
		outline: none;
		border-color: #1a237e;
		box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
		background: white;
	}

	.form-group textarea {
		resize: vertical;
		min-height: 120px;
	}

	.form-group small {
		display: block;
		margin-top: 5px;
		color: #666;
		font-size: 0.75rem;
	}


	.form-checkbox {
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 20px 0;
	}

	.form-checkbox input[type="checkbox"] {
		width: 18px;
		height: 18px;
		cursor: pointer;
	}

	.form-checkbox label {
		color: #555;
		font-size: 0.9rem;
	}

	.form-checkbox a {
		color: #1a237e;
		text-decoration: underline;
	}

	.form-checkbox a:hover {
		color: #d4af37;
	}

	.submit-btn {
		background: #0b1e4e;
		color: white;
		border: none;
		padding: 16px 20px;
		font-size: 1.2rem;
		font-weight: 700;
		border-radius: 60px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		border: 2px solid #e9c46a;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.submit-btn:hover {
		background: linear-gradient(135deg, #283593 0%, #1a237e 100%);
		transform: translateY(-2px);
		box-shadow: 0 10px 20px rgba(26, 35, 126, 0.3);
	}

	.submit-btn:disabled {
		opacity: 0.7;
		cursor: not-allowed;
		transform: none;
	}

/* ============ SUCCESS/ERROR MESSAGES ============ */
.success-message,
.error-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

.success-message {
    background: #4caf50;
    color: white;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 
	/* Footer */
	.site-footer {
		      background: #0b1a30;
      color: #ddd;
      padding: 32px 20px 20px;
      margin-top: 40px;
	}

	.footer-main {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
		margin-bottom: 20px;
	}


	.footer-title {
		color: #d4af37;
		font-size: 1.35rem;
		margin-bottom: 12px;
		padding-bottom: 12px;
		border-bottom: 2px solid #d4af37;
		display: inline-block;
		text-align: center;
	}

	.footer-title::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 50px;
		height: 3px;
		background: #d4af37;
	}

	.footer-tagline {
		color: #ffd966;
		font-size: 1rem;
		margin-bottom: 15px;
		font-weight: 500;
	}

	.footer-description {
		color: #ccc;
		line-height: 1.6;
		margin-bottom: 20px;
		font-size: 0.95rem;
	}

	.footer-contact-info p {
		color: #ccc;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 0.95rem;
	}

	.footer-contact-info i {
		color: #d4af37;
		width: 20px;
		font-size: 1rem;
	}

	.footer-links {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.footer-links li {
		margin-bottom: 12px;
	}

	.footer-links a {
		color: #ccc;
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 8px;
		transition: all 0.3s ease;
		font-size: 0.95rem;
	}

	.footer-links a i {
		color: #d4af37;
		font-size: 0.8rem;
		transition: transform 0.3s ease;
	}

	.footer-links a:hover {
		color: #d4af37;
		padding-left: 5px;
	}

	.footer-links a:hover i {
		transform: translateX(3px);
	}

	.social-links {
		display: flex;
            flex-wrap: wrap;
            gap: 12px;

		margin-bottom: 30px;
	}


	.social-share-btn, 		.social-icon {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: white;
		text-decoration: none;
		transition: all 0.3s ease;
		font-size: 1.2rem;
		margin: 0 8px;
		cursor: pointer;
		border: none;
	}

	.facebook { background: #3b599b; }
	.twitter { background: #1da1f2; }
	.linkedin { background: #0077b5; }
	.whatsapp { background: #25d366; }
	.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
	.youtube { background: #ff0000; }
	.threads { background: #000000; }
	.phone { background: #4caf50; }


	.social-share-btn:hover,
	.social-icon:hover {
		transform: translateY(-3px);
    filter: brightness(1.1);
	}


	.footer-newsletter h4 {
		color: #d4af37;
		font-size: 1.1rem;
		margin-bottom: 10px;
	}

	.footer-newsletter p {
		color: #ccc;
		font-size: 0.9rem;
		margin-bottom: 15px;
	}

	.newsletter-form {
		display: flex;
		gap: 5px;
	}

	.newsletter-form input {
		flex: 1;
		padding: 10px;
		border: none;
		border-radius: 30px 0 0 30px;
		outline: none;
	}


	.newsletter-form button {
		background: #d4af37;
		border: none;
		padding: 0 15px;
		border-radius: 0 30px 30px 0;
		cursor: pointer;
		color: #0f172a;
		transition: 0.2s;
	}

	.newsletter-form button:hover {
		background: #ffd966;
	}


	.newsletter-message {
		margin-top: 10px;
		font-size: 0.8rem;
}



	/* Footer Bottom Bar */
	.footer-bottom {
		background: rgba(0, 0, 0, 0.3);
		padding: 20px 0;
	}


	.footer-copyright p {
		color: #999;
		font-size: 0.9rem;
	}


	/* Cookie Consent Banner */


	.cookie-content {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #1a2c3e;
		color: #e2e8f0;
		padding: 20px;
		z-index: 9999;
		transform: translateY(100%);
		transition: transform 0.4s ease;
		box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
		border-top: 3px solid #ffd966;

	}
	.cookie-consent.show {
		transform:	 translateY(0);
	}
	
	.cookie-content {
		max-width: 1300px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		gap: 20px;
	}

	.cookie-text {
		flex: 2;
		min-width: 280px;
	}

	.cookie-text p {
		margin-bottom: 8px;
		font-size: 0.85rem;
	}

	.cookie-text strong {
		color: #ffd966;
	}

	.cookie-buttons {
		  display: flex;
		gap: 15px;
	}

	.cookie-btn {
		padding: 10px 24px;
		border-radius: 40px;
		font-weight: 600;
		font-size: 0.85rem;
		cursor: pointer;
		border: none;
	}

	.cookie-btn.accept {
		background: #ffd966;
		color: #1a2c3e;
	}

	.cookie-btn.accept:hover {
		background: #ffed9e;
	}


	.cookie-btn.decline {
		background: transparent;
		color: #ffd966;
		border: 1px solid #ffd966;
	}

/* ============ READING PROGRESS BAR ============ */

	.reading-progress {
		position: fixed;
		top: 0;
		left: 0;
		width: 0%;
		height: 4px;
		background: linear-gradient(90deg, #fbbf24, #2a4365);
		z-index: 9999;
		transition: width 0.3s ease;
	}


/* ============ RTL SUPPORT ============ */


	[dir="rtl"] .area-list li {
		padding-left: 0;
		padding-right: 25px;
	}

	[dir="rtl"] .area-list li:before {
		left: auto;
		right: 0;
	}

	[dir="rtl"] .benefit-item {
		flex-direction: row-reverse;
	}

	[dir="rtl"] .benefit-icon {
		margin-right: 0;
		margin-left: 15px;
	}

	[dir="rtl"] .contact-item {
		flex-direction: row-reverse;
	}

	[dir="rtl"] .footer-title::after {
		left: auto;
		right: 0;
	}

	[dir="rtl"] .footer-links a i {
		margin-left: 8px;
		margin-right: 0;
	}

	[dir="rtl"] .footer-contact-info p {
		flex-direction: row-reverse;
	}

	[dir="rtl"] .working-hours p {
		flex-direction: row-reverse;
	}

	[dir="rtl"] .newsletter-form input {
		border-radius: 0 5px 5px 0;
	}

	[dir="rtl"] .newsletter-form button {
		border-radius: 5px 0 0 5px;
	}

	[dir="rtl"] .form-row {
		direction: rtl;
	}

	[dir="rtl"] .cookie-content {
		direction: rtl;
	}

	[dir="rtl"] .back-to-home i {
		transform: rotate(180deg);
	}



























	.urdu-content {
		font-family: 'Noto Nastaliq Urdu', serif;
		direction: rtl;
		text-align: right;
	}

	.lang-btn.active {
		background-color: #1a237e;
		color: white;
	}


		@media (max-width: 768px) {
	.logo-container {
		margin-bottom: 0.5rem;
		}
	}
	.header-content {
		flex: 1;
		}
			

	.lawyer-photo:hover {
		transform: scale(1.02);
	}



	[dir="rtl"] .section-title:after {
		left: auto;
		right: 0;
	}



	.benefit-item {
		 display: flex;
		gap: 16px;
		margin-bottom: 28px;
		align-items: flex-start;
	}

	.benefit-icon {
		 width: 48px;
		height: 48px;
		background: #eef2ff;
		border-radius: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #1e3a5f;
		font-size: 1.4rem;
		flex-shrink: 0;
	}

	.benefit-text h3 {
		font-size: 1.2rem;
		margin-bottom: 6px;
		color: #1e3a5f;
	}



	/* Disclaimer Note */
	.disclaimer-note {
		background: #fef9e6;
		border-left: 4px solid #ffd966;
		padding: 16px 24px;
		margin: 24px 0;
		border-radius: 12px;
		font-size: 0.85rem;
		color: #5a4a2a;
	}

	.disclaimer-note i {
		margin-right: 12px;
		color: #ffd966;
	}



	 
			
	/* Base Social Share Button Styles */
	.social-sharing {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin: 20px 0;
			}

	

	/* Hover Effects */
	.social-share-btn:hover, 		.social-icon:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
		filter: brightness(1.1);
			}

	/* Active/Click Effect */
	.social-share-btn:active, 		.social-icon:active {
		transform: translateY(0px);
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
			}

	/* Focus Styles for Accessibility */
	.social-share-btn:focus, 		.social-icon:focus {
		outline: 2px solid #fff;
		outline-offset: 2px;
			}

	/* Individual Platform Colors */
	.facebook { 
		background: #3b5998; 
			}

	.facebook:hover { 
		background: #4267b2; 
			}

	.twitter { 
		background: #1da1f2; 
			}

	.twitter:hover { 
		background: #1a91da; 
			}

	.linkedin { 
		background: #0077b5; 
			}

	.linkedin:hover { 
		background: #005582; 
			}

	.whatsapp { 
		background: #25d366; 
			}

	.whatsapp:hover { 
		background: #20b859; 
			}


	.instagram { 
		background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
		background-size: 200% 200%;
			}

	.instagram:hover {
		background-position: 100% 100%;
		animation: gradientShift 0.3s ease;
			}


	.youtube { 
		background: #ff0000; 
			}

	.youtube:hover { 
		background: #cc0000; 
			}
			
			
	.threads { 
		background: #000000; 
			}

	.threads:hover { 
		background: #1a1a1a; 
			}

	.phone { 
		background: #4caf50; 
			}

	.phone:hover { 
		background: #45a049; 
			}
			
			@keyframes gradientShift {
				0% { background-position: 0% 0%; }
				100% { background-position: 100% 100%; }
			}

			/* Container for Social Buttons */
	.social-container {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 15px;
		flex-wrap: wrap;
		padding: 20px;
			}

			/* Responsive Design */
			@media (max-width: 768px) {
	.social-share-btn,
	.social-icon {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
		margin: 0 5px;
				}
			}
			
	.fa-brands, .fab {
		font-weight: 400;
	}

	.fa-brands, .fab
	Specificity: (0,1,0)
	 {
		font-family: "Font Awesome 6 Brands";
	}

	.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: var(--fa-display, inline-block);
		font-style: normal;
		font-variant: normal;
		line-height: 1;
		text-rendering: auto;
	}


			@media (max-width: 480px) {
				.social-share-btn,
				.social-icon {
					width: 40px;
					height: 40px;
					font-size: 1rem;
					margin: 0 4px;
				}
			}

			/* Tooltip on Hover (Optional) */
			.social-share-btn[aria-label]:hover:after,
			.social-icon[aria-label]:hover:after {
				content: attr(aria-label);
				position: absolute;
				bottom: -30px;
				left: 50%;
				transform: translateX(-50%);
				background: rgba(0, 0, 0, 0.8);
				color: white;
				padding: 4px 8px;
				border-radius: 4px;
				font-size: 12px;
				white-space: nowrap;
				z-index: 1000;
				pointer-events: none;
			}

			/* For buttons using social-share-btn class only */
			.social-share-btn {
				position: relative;
			}

			/* For buttons using social-icon class only */
			.social-icon {
				position: relative;
			}

			/* Pulse Animation on Hover (Optional) */
			@keyframes pulse {
				0% {
					box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
				}
				70% {
					box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
				}
				100% {
					box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
				}
			}



			/* Dark Mode Support */
			@media (prefers-color-scheme: dark) {
				.social-share-btn:focus,
				.social-icon:focus {
					outline-color: #333;
				}
			}

			









			

	/* Footer */

	.footer-col {
		text-align: left;
	}

	.working-hours {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		margin-bottom: 24px;margin: 25px;
		background: linear-gradient(135deg, #1a237e 0%, #0d1b3e 100%);
	}

	.working-hours h4 {
		color: #d4af37;
		font-size: 1.5rem;
		margin-bottom: 25px;
	}

	.working-hours p {
		color: #d4af37;
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 1.2rem;
		margin: 25px;
	}

	.working-hours i {
		color: #d4af37;
		width: 20px;
	}


	.social-icon {
	   flex-direction: column;
	   align-items: center;
				color: white;
	}


	.footer-newsletter {
		margin-bottom: 25px;
	}


	.newsletter-form input::placeholder {
		color: #999;
	}

	
	.footer-badges {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.badge {
		color: #ccc;
		font-size: 0.9rem;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.badge i {
		color: #d4af37;
	}

	/* Footer Bottom Bar */


	.footer-bottom-content {
		max-width: 1400px;
		margin: 0 auto;
		padding: 0 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 20px;
	}

	.footer-legal {
		display: flex;
		gap: 15px;
		align-items: center;
	}

	.footer-legal a {
		color: #ccc;
		text-decoration: none;
		font-size: 0.9rem;
		transition: color 0.3s ease;
	}

	.footer-legal a:hover {
		color: #d4af37;
	}

	.separator {
		color: #555;
	}

	.footer-credit p {
		color: #999;
		font-size: 0.9rem;
	}

	.footer-credit i {
		color: #ff6b6b;
	}

	.footer-note {
		text-align: center;
		font-size: 0.9rem;
		color: #666;
		padding-top: 20px;
		border-top: 1px solid #eee;
	}


	/* modal */
	.modal {
		display: none;
		position: fixed;
		z-index: 1000;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.modal-content {
		background-color: white;
		margin: 15% auto;
		padding: 30px;
		border-radius: 10px;
		width: 80%;
		max-width: 600px;
		position: relative;
	}

	.close-modal {
		position: absolute;
		right: 20px;
		top: 15px;
		font-size: 28px;
		cursor: pointer;
		color: #666;
	}

	.close-modal:hover {
		color: #000;
	}


	/* Cookie Consent Banner */
	.cookie-text a {
		color: #ffd966;
		text-decoration: underline;
		cursor: pointer;
	}

	.cookie-text a:hover {
		color: #ffd966;
	}

	.cookie-buttons {
		display: flex;
		gap: 16px;
		flex-wrap: wrap;
		align-items: center;
	}

	.cookie-btn {
		padding: 12px 28px;
		border-radius: 40px;
		font-weight: 600;
		font-size: 0.9rem;
		cursor: pointer;
		transition: all 0.2s;
		border: none;
		font-family: inherit;
	}

	.cookie-btn.accept {
		background: #ffd966;
		color: #1a2c3e;
	}

	.cookie-btn.accept:hover {
		background: #ffed9e;
		transform: translateY(-2px);
	}


	.cookie-btn.decline {
		background: transparent;
		color: #ffd966;
		border: 1px solid #ffd966;
	}

	.cookie-btn.decline:hover {
		background: rgba(255,217,102,0.1);
	}


	/* Cookie Settings Modal */
	.cookie-modal {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.6);
		z-index: 10000;
		align-items: center;
		justify-content: center;
	}

	.cookie-modal.show {
		display: flex;
	}

	.cookie-modal-content {
		background: white;
		border-radius: 24px;
		max-width: 550px;
		width: 90%;
		max-height: 85vh;
		overflow-y: auto;
		padding: 32px;
		position: relative;
	}

	.cookie-modal-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 24px;
		padding-bottom: 16px;
		border-bottom: 2px solid #eef2f6;
	}

	.cookie-modal-header h3 {
		color: #1e3a5f;
		font-size: 1.5rem;
	}

	.cookie-option {
		margin-bottom: 28px;
		padding: 16px;
		background: #f8fafc;
		border-radius: 16px;
	}

	.cookie-option-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 12px;
	}

	.cookie-option-header h4 {
		color: #1e3a5f;
	}

	.toggle-switch {
		position: relative;
		display: inline-block;
		width: 52px;
		height: 28px;
	}

	.toggle-switch input {
		opacity: 0;
		width: 0;
		height: 0;
	}

	.toggle-slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #cbd5e1;
		transition: 0.3s;
		border-radius: 34px;
	}

	.toggle-slider:before {
		position: absolute;
		content: "";
		height: 22px;
		width: 22px;
		left: 3px;
		bottom: 3px;
		background-color: white;
		transition: 0.3s;
		border-radius: 50%;
	}

	input:checked + .toggle-slider {
		background-color: #1e3a5f;
	}

	input:checked + .toggle-slider:before {
		transform: translateX(24px);
	}

	input:disabled + .toggle-slider {
		background-color: #1e3a5f;
		opacity: 0.6;
	}

	.cookie-option p {
		color: #64748b;
		font-size: 0.85rem;
		line-height: 1.5;
	}

	.modal-buttons {
		display: flex;
		justify-content: flex-end;
		gap: 16px;
		margin-top: 24px;
		padding-top: 16px;
		border-top: 1px solid #eef2f6;
	}

	.btn-save {
		background: #1e3a5f;
		color: white;
		padding: 12px 28px;
		border: none;
		border-radius: 40px;
		font-weight: 600;
		cursor: pointer;
	}

	.btn-cancel {
		background: transparent;
		border: 1px solid #cbd5e1;
		padding: 12px 28px;
		border-radius: 40px;
		font-weight: 600;
		cursor: pointer;
	}



	.cookie-btn.settings {
		background: transparent;
		color: white;
		border: 2px solid #d4af37;
	}

	.cookie-btn.settings:hover {
		background: rgba(212, 175, 55, 0.2);
		transform: translateY(-2px);
	}

	.cookie-btn.close {
		background: transparent;
		color: #999;
		border: 1px solid #555;
	}

	.cookie-btn.close:hover {
		background: #333;
		color: white;
	}



	/* RTL overrides */

	.urdu-content .area-list li {
		padding-left: 0;
		padding-right: 25px;
	}

	.urdu-content .area-list li:before {
		left: auto;
		right: 0;
	}

	.urdu-content .benefit-item {
		flex-direction: row-reverse;
	}

	.urdu-content .benefit-icon {
		margin-right: 0;
		margin-left: 15px;
	}

	.urdu-content .contact-item {
		flex-direction: row-reverse;
	}

	/* responsiveness */

	@media (max-width: 1200px) {
		.footer-main {
			grid-template-columns: repeat(2, 1fr);
			gap: 30px;
		}
	}

	@media (max-width: 900px) {
		.Header {
			flex-direction: column;
			text-align: center;
			min-height: auto;
		}

		.lawyer-photo {
			width: 200px;
			height: 280px;
		}
	}

	@media (max-width: 768px) {
		.hero-title,.headline {
			font-size: 2rem;
		}

		.blog-grid,
		.testimonials-grid,
		.case-studies-section,
		.fee-grid {
			grid-template-columns: 1fr;
		}
	}


		footer {
			display: block;
			unicode-bidi: isolate;

	}

	footer i {
		font-size: 20px;
		color: #ffffff; /* or dark if background is light */
		transition: 0.3s;
	}

	footer i:hover {
		color: #ffd966;
	}



	/* Responsive Design */
	@media screen and (max-width: 1200px) {
		.footer-main {
			grid-template-columns: repeat(2, 1fr);
			gap: 30px;
		}
	}

	@media screen and (max-width: 768px) {
		.footer-main {
			grid-template-columns: 1fr;
			gap: 30px;
		}

		.footer-bottom-content {
			flex-direction: column;
			text-align: center;
		}

		.footer-legal {
			justify-content: center;
			flex-wrap: wrap;
		}

		.footer-col {
			text-align: center;
		}

		.footer-title::after {
			left: 50%;
			transform: translateX(-50%);
		}

		.footer-contact-info p {
			justify-content: center;
		}

		.social-links {
			justify-content: center;
		}

		.footer-links a {
			justify-content: center;
		}

		.working-hours p {
			justify-content: center;
		}

		.badge {
			justify-content: center;
		}
	}

	/* Urdu/Hindi Language Support */
	[lang="ur"] .site-footer,
	[lang="hi"] .site-footer {
		font-family: 'Noto Nastaliq Urdu', 'Hind', sans-serif;
	}

	[dir="rtl"] .footer-title::after {
		left: auto;
		right: 0;
	}

	[dir="rtl"] .footer-links a i {
		margin-left: 8px;
		margin-right: 0;
	}

	[dir="rtl"] .footer-contact-info p {
		flex-direction: row-reverse;
	}

	[dir="rtl"] .working-hours p {
		flex-direction: row-reverse;
	}

	[dir="rtl"] .newsletter-form input {
		border-radius: 0 5px 5px 0;
	}

	[dir="rtl"] .newsletter-form button {
		border-radius: 5px 0 0 5px;
	}



	/* Legal Pages Styles */
	.legal-page {
		max-width: 1000px;
		margin: 50px auto;
		padding: 40px;
		background: white;
		border-radius: 15px;
		box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	}

	.legal-header {
		text-align: center;
		margin-bottom: 40px;
		padding-bottom: 20px;
		border-bottom: 3px solid #d4af37;
	}

	.legal-header h1 {
		color: #1a237e;
		font-size: 2.5rem;
		margin-bottom: 10px;
	}

	.legal-header p {
		color: #666;
		font-size: 1rem;
	}

	.legal-section {
		margin-bottom: 40px;
	}

	.legal-section h2 {
		color: #1a237e;
		font-size: 1.8rem;
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: 2px solid #e0e0e0;
	}

	.legal-section h3 {
		color: #333;
		font-size: 1.3rem;
		margin: 20px 0 10px;
	}

	.legal-section p {
		color: #555;
		line-height: 1.8;
		margin-bottom: 15px;
	}

	.legal-section ul,
	.legal-section ol {
		margin: 15px 0 15px 30px;
		color: #555;
	}

	.legal-section li {
		margin-bottom: 10px;
		line-height: 1.6;
	}

	.legal-section strong {
		color: #1a237e;
	}

	.legal-note {
		background: #f8f9fa;
		padding: 20px;
		border-left: 4px solid #d4af37;
		border-radius: 8px;
		margin: 20px 0;
	}

	.back-to-home {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		color: #1a237e;
		text-decoration: none;
		font-weight: 600;
		margin-bottom: 20px;
		transition: 0.3s;
	}

	.back-to-home:hover {
		color: #d4af37;
		gap: 15px;
	}
	/* ===== FOOTER NOTE ===== */
	.footer-note {
		text-align: center;
		font-size: 0.9rem;
		color: #666;
		margin-top: 30px;
		padding-top: 20px;
		border-top: 1px solid #eee;
	}

	/* ===== PRIVACY LINK ===== */
	.privacy-link {
		text-align: center;
		margin-top: 20px;
	}

	.privacy-link a {
		color: #1a237e;
		text-decoration: underline;
	}

	.privacy-link a:hover {
		color: #d4af37;
	}

	/* ===== RTL SPECIFIC OVERRIDES ===== */
	[lang="ur"] .site-footer,
	[lang="hi"] .site-footer {
		font-family: 'Noto Nastaliq Urdu', 'Hind', sans-serif;
	}

	[dir="rtl"] .back-to-home i {
		transform: rotate(180deg);
	}

	/* ===== TESTIMONIAL CARD ENHANCEMENTS ===== */
	.testimonial-header {
		display: flex;
		align-items: center;
		gap: 15px;
		margin-bottom: 15px;
	}

	.testimonial-avatar {
		width: 50px;
		height: 50px;
		background: linear-gradient(135deg, #1a237e, #283593);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 1.2rem;
	}

	.testimonial-client-info h4 {
		color: #1a237e;
		margin-bottom: 4px;
		font-size: 1.1rem;
	}

	.testimonial-client-info p {
		color: #666;
		font-size: 0.85rem;
	}

	.testimonial-practice-area {
		display: inline-block;
		background: #e8eaf6;
		color: #1a237e;
		font-size: 0.75rem;
		padding: 4px 12px;
		border-radius: 20px;
		margin-bottom: 15px;
	}

	.testimonial-rating {
		margin-top: 15px;
		color: #ffc107;
	}

	.testimonial-date {
		font-size: 0.75rem;
		color: #999;
		margin-top: 10px;
	}

	/* ===== BLOG CARD ENHANCEMENTS ===== */
	.blog-card {
		display: flex;
		flex-direction: column;
	}

	.blog-card .blog-image {
		position: relative;
		overflow: hidden;
		border-radius: 16px;
	}

	.blog-card .blog-image img {
		transition: transform 0.3s ease;
	}

	.blog-card:hover .blog-image img {
		transform: scale(1.05);
	}

	/* ===== FEE CARD ENHANCEMENTS ===== */
	.fee-card ul {
		list-style: none;
		padding: 0;
		margin-top: 15px;
		text-align: left;
	}

	.fee-card ul li {
		margin: 10px 0;
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 0.9rem;
		color: #555;
	}

	.fee-card ul li i {
		color: #1a237e;
	}

	/* ===== CONSULTATION FORM ENHANCEMENTS ===== */
	.form-group small {
		display: block;
		margin-top: 5px;
		font-size: 0.75rem;
	}

	select.form-control {
		appearance: none;
		
		background-repeat: no-repeat;
		background-position: right 1rem center;
		background-size: 1em;
	}

	/* ===== RESPONSIVE ENHANCEMENTS ===== */
	@media (max-width: 768px) {
		.hero-grid,
		.Header {
			flex-direction: column;
			text-align: center;
		}
		
		.section-title:after {
			left: 50%;
			transform: translateX(-50%);
		}
		
		.consultation-form-section {
			padding: 28px;
		}
		
		.legal-page {
			padding: 20px;
		}
		
		.legal-header h1 {
			font-size: 2rem;
		}
		
		.fee-card ul li {
			justify-content: center;
		}
	}

	@media (max-width: 480px) {
		.hero-title,
		.headline {
			font-size: 1.8rem;
		}
		
		.subheading {
			font-size: 1.2rem;
		}
		
		.section-title {
			font-size: 1.6rem;
		}
		
		.contact-title {
			font-size: 1.4rem;
		}
		
		.form-title {
			font-size: 1.6rem;
		}
		
		.cookie-btn {
			padding: 8px 20px;
			font-size: 0.8rem;
		}
	}

	/* ===== PRINT STYLES ===== */
	@media print {
		.language-switcher,
		.cookie-consent,
		.cookie-modal,
		.social-links,
		.newsletter-form,
		.cta-button-container {
			display: none !important;
		}
		
		body {
			background: white;
			padding: 0;
			margin: 0;
		}
		
		.container {
			box-shadow: none;
			border: none;
		}
		
		.Header {
			background: #1a237e;
			-webkit-print-color-adjust: exact;
			print-color-adjust: exact;
		}
		
		.section-title:after {
			-webkit-print-color-adjust: exact;
			print-color-adjust: exact;
		}
	}

	/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
	:focus {
		outline: 2px solid #d4af37;
		outline-offset: 2px;
	}

	button:focus-visible,
	a:focus-visible,
	input:focus-visible,
	select:focus-visible,
	textarea:focus-visible {
		outline: 2px solid #d4af37;
		outline-offset: 2px;
	}

	.skip-to-content {
		position: absolute;
		top: -40px;
		left: 0;
		background: #1a237e;
		color: white;
		padding: 8px 16px;
		text-decoration: none;
		z-index: 10000;
	}

	.skip-to-content:focus {
		top: 0;
	}

	/* ===== UTILITY CLASSES ===== */
	.text-center {
		text-align: center;
	}

	.text-left {
		text-align: left;
	}

	.text-right {
		text-align: right;
	}

	.text-justify {
		text-align: justify;
	}

	.mt-1 { margin-top: 0.25rem; }
	.mt-2 { margin-top: 0.5rem; }
	.mt-3 { margin-top: 1rem; }
	.mt-4 { margin-top: 1.5rem; }
	.mt-5 { margin-top: 2rem; }

	.mb-1 { margin-bottom: 0.25rem; }
	.mb-2 { margin-bottom: 0.5rem; }
	.mb-3 { margin-bottom: 1rem; }
	.mb-4 { margin-bottom: 1.5rem; }
	.mb-5 { margin-bottom: 2rem; }

	.p-1 { padding: 0.25rem; }
	.p-2 { padding: 0.5rem; }
	.p-3 { padding: 1rem; }
	.p-4 { padding: 1.5rem; }
	.p-5 { padding: 2rem; }

	.hidden {
		display: none !important;
	}

	.visible {
		display: block !important;
	}

	/* ===== ANIMATIONS ===== */
	@keyframes fadeIn {
		from {
			opacity: 0;
			transform: translateY(10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.fade-in {
		animation: fadeIn 0.3s ease forwards;
	}

	@keyframes slideInUp {
		from {
			transform: translateY(100%);
		}
		to {
			transform: translateY(0);
		}
	}

	.slide-in-up {
		animation: slideInUp 0.4s ease forwards;
	}
	/* RTL Support for Urdu */
	[dir="rtl"] .form-row {
		direction: rtl;
	}

	[dir="rtl"] .cookie-content {
		direction: rtl;
	}

	[dir="rtl"] .back-to-home i {
		transform: rotate(180deg);
	}

	@media (max-width: 768px) {
		.form-row {
			grid-template-columns: 1fr;
		}

		.cookie-content {
			flex-direction: column;
			text-align: center;
		}

		.cookie-buttons {
			justify-content: center;
		}

		.legal-page {
			padding: 20px;
		}

		.legal-header h1 {
			font-size: 2rem;
		}
	}

	@media (max-width: 480px) {
		.fee-structure-section {
			padding: 15px;
		}

		.fee-structure-section [style*="grid-template-columns"] {
			grid-template-columns: 1fr !important;
		}

		.form-row {
			grid-template-columns: 1fr;
		}
	}

	/* ===== GRID SYSTEM ===== */
	.grid {
		display: grid;
		gap: 24px;
	}

	.grid-1 { grid-template-columns: 1fr; }
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }

	@media (max-width: 1024px) {
		.grid-4 { grid-template-columns: repeat(2, 1fr); }
		.grid-3 { grid-template-columns: repeat(2, 1fr); }
	}

	@media (max-width: 768px) {
		.grid-2, .grid-3, .grid-4 {
			grid-template-columns: 1fr;
		}
	}

	/* ===== FLEX UTILITIES ===== */
	.flex {
		display: flex;
	}

	.flex-col {
		flex-direction: column;
	}

	.flex-wrap {
		flex-wrap: wrap;
	}

	.items-center {
		align-items: center;
	}

	.items-start {
		align-items: flex-start;
	}

	.items-end {
		align-items: flex-end;
	}

	.justify-center {
		justify-content: center;
	}

	.justify-between {
		justify-content: space-between;
	}

	.justify-start {
		justify-content: flex-start;
	}

	.justify-end {
		justify-content: flex-end;
	}

	.gap-1 { gap: 0.25rem; }
	.gap-2 { gap: 0.5rem; }
	.gap-3 { gap: 1rem; }
	.gap-4 { gap: 1.5rem; }
	.gap-5 { gap: 2rem; }

	/* ===== SPACING UTILITIES ===== */
	.m-0 { margin: 0; }
	.m-auto { margin: auto; }

	.mx-auto { margin-left: auto; margin-right: auto; }
	.my-auto { margin-top: auto; margin-bottom: auto; }

	.mt-0 { margin-top: 0; }
	.mt-1 { margin-top: 0.25rem; }
	.mt-2 { margin-top: 0.5rem; }
	.mt-3 { margin-top: 1rem; }
	.mt-4 { margin-top: 1.5rem; }
	.mt-5 { margin-top: 2rem; }
	.mt-6 { margin-top: 3rem; }

	.mb-0 { margin-bottom: 0; }
	.mb-1 { margin-bottom: 0.25rem; }
	.mb-2 { margin-bottom: 0.5rem; }
	.mb-3 { margin-bottom: 1rem; }
	.mb-4 { margin-bottom: 1.5rem; }
	.mb-5 { margin-bottom: 2rem; }
	.mb-6 { margin-bottom: 3rem; }

	.ml-0 { margin-left: 0; }
	.ml-1 { margin-left: 0.25rem; }
	.ml-2 { margin-left: 0.5rem; }
	.ml-3 { margin-left: 1rem; }
	.ml-4 { margin-left: 1.5rem; }
	.ml-5 { margin-left: 2rem; }

	.mr-0 { margin-right: 0; }
	.mr-1 { margin-right: 0.25rem; }
	.mr-2 { margin-right: 0.5rem; }
	.mr-3 { margin-right: 1rem; }
	.mr-4 { margin-right: 1.5rem; }
	.mr-5 { margin-right: 2rem; }

	.p-0 { padding: 0; }
	.p-1 { padding: 0.25rem; }
	.p-2 { padding: 0.5rem; }
	.p-3 { padding: 1rem; }
	.p-4 { padding: 1.5rem; }
	.p-5 { padding: 2rem; }
	.p-6 { padding: 3rem; }

	.px-0 { padding-left: 0; padding-right: 0; }
	.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
	.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
	.px-3 { padding-left: 1rem; padding-right: 1rem; }
	.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
	.px-5 { padding-left: 2rem; padding-right: 2rem; }
	.px-6 { padding-left: 3rem; padding-right: 3rem; }

	.py-0 { padding-top: 0; padding-bottom: 0; }
	.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
	.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
	.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
	.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
	.py-5 { padding-top: 2rem; padding-bottom: 2rem; }
	.py-6 { padding-top: 3rem; padding-bottom: 3rem; }

	/* ===== TYPOGRAPHY UTILITIES ===== */
	.text-xs { font-size: 0.75rem; line-height: 1rem; }
	.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
	.text-base { font-size: 1rem; line-height: 1.5rem; }
	.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
	.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
	.text-2xl { font-size: 1.5rem; line-height: 2rem; }
	.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
	.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
	.text-5xl { font-size: 3rem; line-height: 1.2; }

	.font-normal { font-weight: 400; }
	.font-medium { font-weight: 500; }
	.font-semibold { font-weight: 600; }
	.font-bold { font-weight: 700; }
	.font-extrabold { font-weight: 800; }

	.text-left { text-align: left; }
	.text-center { text-align: center; }
	.text-right { text-align: right; }
	.text-justify { text-align: justify; }

	.uppercase { text-transform: uppercase; }
	.lowercase { text-transform: lowercase; }
	.capitalize { text-transform: capitalize; }

	.italic { font-style: italic; }
	.not-italic { font-style: normal; }

	.line-through { text-decoration: line-through; }
	.underline { text-decoration: underline; }
	.no-underline { text-decoration: none; }

	/* ===== COLOR UTILITIES ===== */
	.text-primary { color: #1a237e; }
	.text-secondary { color: #d4af37; }
	.text-accent { color: #ff5722; }
	.text-success { color: #4caf50; }
	.text-warning { color: #ff9800; }
	.text-error { color: #f44336; }
	.text-info { color: #2196f3; }
	.text-white { color: #ffffff; }
	.text-dark { color: #1a1a2e; }
	.text-gray { color: #666666; }
	.text-light { color: #999999; }

	.bg-primary { background-color: #1a237e; }
	.bg-secondary { background-color: #d4af37; }
	.bg-accent { background-color: #ff5722; }
	.bg-success { background-color: #4caf50; }
	.bg-warning { background-color: #ff9800; }
	.bg-error { background-color: #f44336; }
	.bg-info { background-color: #2196f3; }
	.bg-white { background-color: #ffffff; }
	.bg-light { background-color: #f8f9fa; }
	.bg-dark { background-color: #1a1a2e; }
	.bg-transparent { background-color: transparent; }

	/* ===== BORDER UTILITIES ===== */
	.border { border: 1px solid var(--border-color, #e0e0e0); }
	.border-0 { border: 0; }
	.border-t { border-top: 1px solid var(--border-color, #e0e0e0); }
	.border-b { border-bottom: 1px solid var(--border-color, #e0e0e0); }
	.border-l { border-left: 1px solid var(--border-color, #e0e0e0); }
	.border-r { border-right: 1px solid var(--border-color, #e0e0e0); }

	.border-primary { border-color: #1a237e; }
	.border-secondary { border-color: #d4af37; }

	.rounded-none { border-radius: 0; }
	.rounded-sm { border-radius: 4px; }
	.rounded { border-radius: 8px; }
	.rounded-md { border-radius: 12px; }
	.rounded-lg { border-radius: 16px; }
	.rounded-xl { border-radius: 24px; }
	.rounded-full { border-radius: 9999px; }

	/* ===== SHADOW UTILITIES ===== */
	.shadow-none { box-shadow: none; }
	.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
	.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
	.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
	.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
	.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }

	/* ===== OPACITY UTILITIES ===== */
	.opacity-0 { opacity: 0; }
	.opacity-25 { opacity: 0.25; }
	.opacity-50 { opacity: 0.5; }
	.opacity-75 { opacity: 0.75; }
	.opacity-100 { opacity: 1; }

	/* ===== Z-INDEX UTILITIES ===== */
	.z-0 { z-index: 0; }
	.z-10 { z-index: 10; }
	.z-20 { z-index: 20; }
	.z-30 { z-index: 30; }
	.z-40 { z-index: 40; }
	.z-50 { z-index: 50; }
	.z-auto { z-index: auto; }

	/* ===== POSITION UTILITIES ===== */
	.relative { position: relative; }
	.absolute { position: absolute; }
	.fixed { position: fixed; }
	.sticky { position: sticky; }
	.static { position: static; }

	.top-0 { top: 0; }
	.right-0 { right: 0; }
	.bottom-0 { bottom: 0; }
	.left-0 { left: 0; }

	/* ===== WIDTH & HEIGHT UTILITIES ===== */
	.w-full { width: 100%; }
	.w-auto { width: auto; }
	.w-screen { width: 100vw; }
	.w-min { width: min-content; }
	.w-max { width: max-content; }
	.w-fit { width: fit-content; }

	.h-full { height: 100%; }
	.h-auto { height: auto; }
	.h-screen { height: 100vh; }
	.h-min { height: min-content; }
	.h-max { height: max-content; }
	.h-fit { height: fit-content; }

	.min-h-screen { min-height: 100vh; }
	.max-w-full { max-width: 100%; }
	.max-w-screen-xl { max-width: 1280px; }
	.max-w-screen-lg { max-width: 1024px; }
	.max-w-screen-md { max-width: 768px; }
	.max-w-screen-sm { max-width: 640px; }

	/* ===== OVERFLOW UTILITIES ===== */
	.overflow-auto { overflow: auto; }
	.overflow-hidden { overflow: hidden; }
	.overflow-visible { overflow: visible; }
	.overflow-scroll { overflow: scroll; }
	.overflow-x-auto { overflow-x: auto; }
	.overflow-y-auto { overflow-y: auto; }

	/* ===== CURSOR UTILITIES ===== */
	.cursor-pointer { cursor: pointer; }
	.cursor-default { cursor: default; }
	.cursor-not-allowed { cursor: not-allowed; }
	.cursor-wait { cursor: wait; }
	.cursor-text { cursor: text; }

	/* ===== TRANSITION UTILITIES ===== */
	.transition-none { transition: none; }
	.transition-all { transition: all 0.3s ease; }
	.transition-transform { transition: transform 0.3s ease; }
	.transition-opacity { transition: opacity 0.3s ease; }
	.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }

	/* ===== VISIBILITY UTILITIES ===== */
	.visible { visibility: visible; }
	.invisible { visibility: hidden; }
	.hidden { display: none; }

	/* ===== LINE CLAMP UTILITIES ===== */
	.line-clamp-1 {
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.line-clamp-2 {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.line-clamp-3 {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	/* ===== LIST STYLES ===== */
	.list-none { list-style: none; }
	.list-disc { list-style-type: disc; }
	.list-decimal { list-style-type: decimal; }
	.list-inside { list-style-position: inside; }
	.list-outside { list-style-position: outside; }

	/* ===== OBJECT FIT UTILITIES ===== */
	.object-contain { object-fit: contain; }
	.object-cover { object-fit: cover; }
	.object-fill { object-fit: fill; }
	.object-scale-down { object-fit: scale-down; }
	.object-none { object-fit: none; }

	/* ===== ASPECT RATIO UTILITIES ===== */
	.aspect-square { aspect-ratio: 1 / 1; }
	.aspect-video { aspect-ratio: 16 / 9; }
	.asport-portrait { aspect-ratio: 3 / 4; }

	/* ===== SCREEN READER ONLY ===== */
	.sr-only {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border-width: 0;
	}

	.not-sr-only {
		position: static;
		width: auto;
		height: auto;
		padding: 0;
		margin: 0;
		overflow: visible;
		clip: auto;
		white-space: normal;
	}

	/* ===== IMAGE REPLACEMENT ===== */
	.image-replace {
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
	}

	/* ===== CLEARFIX ===== */
	.clearfix::after {
		content: '';
		display: table;
		clear: both;
	}

	/* ===== PRINT UTILITIES ===== */
	@media print {
		.print-hidden {
			display: none !important;
		}
		
		.print-visible {
			display: block !important;
		}
		
		.print-break-inside-avoid {
			break-inside: avoid;
		}
		
		.print-break-before-page {
			break-before: page;
		}
		
		.print-break-after-page {
			break-after: page;
		}
	}

				/* Improved Button Loading States */
			.submit-btn:disabled {
				opacity: 0.7;
				cursor: not-allowed;
				transform: none;
			}

			.submit-btn i.fa-spinner {
				margin-right: 8px;
			}

			/* Success/Error Message Animations */
			.success-message, .error-message {
				animation: slideDown 0.3s ease forwards;
			}

			/* Additional critical styles for performance */
			.reading-progress {
				position: fixed;
				top: 0;
				left: 0;
				width: 0%;
				height: 4px;
				background: linear-gradient(90deg, #fbbf24, #2a4365);
				z-index: 9999;
				transition: width 0.3s ease;
			}
			
			/* Loading state optimization */
			img {
				max-width: 100%;
				height: auto;
			}
			
			/* Accessibility */
			.skip-to-content {
				position: absolute;
				left: -9999px;
				top: auto;
				width: 1px;
				height: 1px;
				overflow: hidden;
			}
			
			.skip-to-content:focus {
				position: fixed;
				top: 0;
				left: 0;
				width: auto;
				height: auto;
				background: #1a237e;
				color: white;
				padding: 10px;
				z-index: 10000;
			}


	 /* Analytics Dashboard Styles - Minimal & Professional */
			.analytics-section {
				background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
				border-radius: 24px;
				padding: 28px 24px;
				margin: 40px 0 30px;
				box-shadow: 0 12px 30px rgba(0,0,0,0.08);
				border: 1px solid rgba(26,35,126,0.12);
				font-family: 'Inter', system-ui, -apple-system, sans-serif;
			}
			.analytics-header {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				align-items: center;
				margin-bottom: 24px;
				border-bottom: 2px solid #e2e8f0;
				padding-bottom: 16px;
			}
			.analytics-header h2 {
				margin: 0;
				font-size: 1.2rem;
				font-weight: 700;
				background: linear-gradient(135deg, #1a237e, #283593);
				-webkit-background-clip: text;
				background-clip: text;
				color: transparent;
				letter-spacing: -0.3px;
			}
			.visitor-counter {
				background: #1a237e;
				padding: 10px 22px;
				border-radius: 60px;
				color: white;
				font-weight: 700;
				display: inline-flex;
				align-items: center;
				gap: 12px;
				box-shadow: 0 4px 10px rgba(26,35,126,0.3);
			}
			.visitor-counter i {
				font-size: 1.0rem;
			}
			.counter-number {
				font-size: 1.6rem;
				font-weight: 800;
				letter-spacing: 1px;
				background: #ffd966;
				color: #1a237e;
				padding: 4px 14px;
				border-radius: 40px;
				margin-left: 8px;
			}
			.stats-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
				gap: 20px;
				margin: 28px 0 20px;
			}
			.stat-card {
				background: white;
				border-radius: 20px;
				padding: 18px 16px;
				text-align: center;
				transition: all 0.2s ease;
				border: 1px solid #eef2ff;
				box-shadow: 0 2px 6px rgba(0,0,0,0.02);
			}
			.stat-card:hover {
				transform: translateY(-3px);
				border-color: #cbd5e1;
				box-shadow: 0 12px 20px -12px rgba(0,0,0,0.1);
			}
			.stat-icon {
				font-size: 1.6rem;
				color: #1a237e;
				margin-bottom: 12px;
			}
			.stat-value {
				font-size: 2.2rem;
				font-weight: 800;
				color: #0f172a;
				line-height: 1.2;
			}
			.stat-label {
				font-size: 0.55rem;
				text-transform: uppercase;
				letter-spacing: 1px;
				font-weight: 600;
				color: #475569;
				margin-top: 8px;
			}
			.analytics-chart {
				background: #f8fafc;
				border-radius: 20px;
				padding: 20px;
				margin-top: 24px;
				border: 1px solid #e2e8f0;
			}
			.chart-title {
				font-weight: 700;
				margin-bottom: 18px;
				font-size: 0.8rem;
				display: flex;
				align-items: center;
				gap: 8px;
				color: #1e293b;
			}
			.bar-container {
				display: flex;
				flex-direction: column;
				gap: 12px;
			}
			.bar-item {
				display: flex;
				align-items: center;
				gap: 12px;
				flex-wrap: wrap;
			}
			.bar-label {
				width: 100px;
				font-weight: 500;
				font-size: 0.45rem;
				color: #334155;
			}
			.bar-bg {
				flex: 1;
				height: 32px;
				background-color: #e2e8f0;
				border-radius: 20px;
				overflow: hidden;
			}
			.bar-fill {
				height: 100%;
				background: linear-gradient(90deg, #1e3a8a, #3b82f6);
				width: 0%;
				border-radius: 20px;
				display: flex;
				align-items: center;
				justify-content: flex-end;
				padding-right: 12px;
				color: white;
				font-size: 0.35rem;
				font-weight: 600;
			}
			.reset-btn {
				background: transparent;
				border: 1px solid #cbd5e1;
				padding: 8px 18px;
				border-radius: 40px;
				font-weight: 500;
				cursor: pointer;
				transition: 0.2s;
				margin-top: 20px;
				font-size: 0.4rem;
			}
			.reset-btn:hover {
				background: #f1f5f9;
				border-color: #1a237e;
			}
			.live-badge {
				background: #10b98120;
				color: #047857;
				border-radius: 30px;
				padding: 4px 12px;
				font-size: 0.35rem;
				font-weight: 600;
				display: inline-flex;
				align-items: center;
				gap: 4px;
			}
			@media (max-width: 640px) {
				.analytics-header { flex-direction: column; align-items: flex-start; gap: 15px; }
				.stat-value { font-size: 0.6rem; }
			}
		

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	  
		  /* Analytics Dashboard Styles - Fully Responsive & Professional */
			.analytics-section {
				background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
				border-radius: 28px;
				padding: 28px 24px;
				margin: 40px 0 30px;
				box-shadow: 0 12px 30px rgba(0,0,0,0.08);
				border: 1px solid rgba(26,35,126,0.12);
				font-family: 'Inter', system-ui, -apple-system, sans-serif;
				transition: all 0.2s;
			}
			/* Urdu specific adjustments */
			.analytics-section[dir="rtl"] .stats-grid,
			.analytics-section[dir="rtl"] .analytics-header {
				direction: rtl;
				text-align: right;
			}
			.analytics-section[dir="rtl"] .visitor-counter {
				flex-direction: row-reverse;
			}
			.analytics-header {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				align-items: center;
				margin-bottom: 24px;
				border-bottom: 2px solid #e2e8f0;
				padding-bottom: 16px;
			}
			.analytics-header h2 {
				margin: 0;
				font-size: 1.4rem;
				font-weight: 700;
				background: linear-gradient(135deg, #1a237e, #283593);
				-webkit-background-clip: text;
				background-clip: text;
				color: transparent;
				letter-spacing: -0.3px;
			}
			.visitor-counter {
				background: #1a237e;
				padding: 10px 22px;
				border-radius: 60px;
				color: white;
				font-weight: 700;
				display: inline-flex;
				align-items: center;
				gap: 12px;
				box-shadow: 0 4px 10px rgba(26,35,126,0.3);
			}
			.visitor-counter i {
				font-size: 1.0rem;
			}
			.counter-number {
				font-size: 1.0rem;
				font-weight: 800;
				letter-spacing: 1px;
				background: #ffd966;
				color: #1a237e;
				padding: 4px 14px;
				border-radius: 40px;
				margin-left: 8px;
			}
			.stats-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
				gap: 20px;
				margin: 28px 0 20px;
			}
			.stat-card {
				background: white;
				border-radius: 20px;
				padding: 18px 16px;
				text-align: center;
				transition: all 0.2s ease;
				border: 1px solid #eef2ff;
				box-shadow: 0 2px 6px rgba(0,0,0,0.02);
			}
			.stat-card:hover {
				transform: translateY(-3px);
				border-color: #cbd5e1;
				box-shadow: 0 12px 20px -12px rgba(0,0,0,0.1);
			}
			.stat-icon {
				font-size: 1.1rem;
				color: #1a237e;
				margin-bottom: 12px;
			}
			.stat-value {
				font-size: 1.1;
				font-weight: 800;
				color: #0f172a;
				line-height: 1.2;
			}
			.stat-label {
				font-size: 0.45rem;
				text-transform: uppercase;
				letter-spacing: 1px;
				font-weight: 600;
				color: #475569;
				margin-top: 8px;
			}
			.analytics-chart {
				background: #f8fafc;
				border-radius: 20px;
				padding: 20px;
				margin-top: 24px;
				border: 1px solid #e2e8f0;
			}
			.chart-title {
				font-weight: 700;
				margin-bottom: 18px;
				font-size: 0.8rem;
				display: flex;
				align-items: center;
				gap: 8px;
				color: #1e293b;
			}
			.bar-container {
				display: flex;
				flex-direction: column;
				gap: 12px;
			}
			.bar-item {
				display: flex;
				align-items: center;
				gap: 12px;
				flex-wrap: wrap;
			}
			.bar-label {
				width: 100px;
				font-weight: 500;
				font-size: 0.45rem;
				color: #334155;
			}
			.bar-bg {
				flex: 1;
				height: 32px;
				background-color: #e2e8f0;
				border-radius: 20px;
				overflow: hidden;
			}
			.bar-fill {
				height: 100%;
				background: linear-gradient(90deg, #1e3a8a, #3b82f6);
				width: 0%;
				border-radius: 20px;
				display: flex;
				align-items: center;
				justify-content: flex-end;
				padding-right: 12px;
				color: white;
				font-size: 0.35rem;
				font-weight: 600;
			}
			.reset-btn {
				background: transparent;
				border: 1px solid #cbd5e1;
				padding: 8px 18px;
				border-radius: 40px;
				font-weight: 500;
				cursor: pointer;
				transition: 0.2s;
				margin-top: 20px;
				font-size: 0.4rem;
			}
			.reset-btn:hover {
				background: #f1f5f9;
				border-color: #1a237e;
			}
			.live-badge {
				background: #10b98120;
				color: #047857;
				border-radius: 30px;
				padding: 4px 12px;
				font-size: 0.35rem;
				font-weight: 600;
				display: inline-flex;
				align-items: center;
				gap: 4px;
			}
			/* Language selector inside analytics for convenience */
			.analytics-lang-switch {
				display: flex;
				gap: 12px;
				margin-bottom: 20px;
				justify-content: flex-end;
			}
			.analytics-lang-btn {
				background: #eef2ff;
				border: none;
				padding: 6px 14px;
				border-radius: 40px;
				font-weight: 500;
				cursor: pointer;
				font-size: 0.4rem;
				transition: 0.2s;
				color: #1e293b;
			}
			.analytics-lang-btn.active-lang {
				background: #1a237e;
				color: white;
				box-shadow: 0 2px 6px rgba(0,0,0,0.1);
			}
			@media (max-width: 640px) {
				.analytics-header { flex-direction: column; align-items: flex-start; gap: 15px; }
				.stat-value { font-size: 0.8rem; }
			}
			/* Urdu font support */
			[lang="ur"] .stat-label, [lang="ur"] .chart-title, [lang="ur"] .bar-label {
				font-family: 'Noto Nastaliq Urdu', 'Inter', sans-serif;
			}
		
		
			 /* ensure compatibility with existing site */
			.analytics-section * { box-sizing: border-box; }
			body { margin: 0; background: #fefefe; }
			.container { width: 100%; }
			
			
	/* Consultation Form Styles 


	.form-container {
		max-width: 1000px;
		margin: 0 auto;
		background: white;
		padding: 40px;
		border-radius: 15px;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	}


	.form-control {
		width: 100%;
		padding: 14px 18px;
		border: 1px solid #e2e8f0;
		border-radius: 12px;
		font-family: inherit;
		font-size: 1rem;
		transition: border-color 0.2s;
		background: #f9f9f9;
	}

	.form-control:focus {
		outline: none;
		border-color: #1e3a5f;
		box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
		background: white;
	}

	textarea.form-control {
		resize: vertical;
		min-height: 120px;
	}

	.submit-btn i {
		font-size: 1.1rem;
	}

	
.success-message {
		background: #4caf50;
		color: white;
		padding: 15px;
		border-radius: 8px;
		margin-bottom: 20px;
		display: none;
		align-items: center;
		gap: 10px;
	}

	.success-message.show {
		display: flex;
	}

	.success-message i {
		font-size: 1.5rem;
	}


			