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

body {
    background-color: white;
    color: #333;
    line-height: 1.5;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* language visibility */
.language-content {
    display: none;
}

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

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

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

/* main container */
.container {
    max-width: 1400px;
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #1a237e;
}


/* Logo styling */
.logo-container {
    gap: 125px;
    margin-bottom: 15px;
	margin-left: 125px
    }
.logo-img {
			
	width: 80px;
    height: 80px;
	border-radius: 10%;
    object-fit: cover;
    border: 3px solid #d4af37;
    object-fit: cover;
    }
    @media (max-width: 768px) {
.logo-container {
    margin-bottom: 0.5rem;
    }
}
.header-content {
    flex: 1;
    }
		
/* header */
.Header {
    background:  linear-gradient(135deg, #0f1744 0%, #1a237e 100%);
    color: white;
    padding: 50px 20px 20px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    min-height: 400px;
}

.header-content {
     width: 100%;
}

.headline {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.subheading {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 15px;
}

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

.lawyer-photo-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.lawyer-photo {
    
	width: 250px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

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

/* language switcher */
.language-switcher {
    position: fixed;
    top: 30px;
    right: 24px;
    display: flex;
    gap: 8px;
    background: white;
    padding: 6px;
    border-radius: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    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;
}



/* body */
.body {
    padding: 20px;
	font-family: 'Inter', sans-serif;
    background: #fafafc;
    color: #1a1a2e;
    line-height: 1.5;
}

.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;
}

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

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

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


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

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

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

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

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

.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;
}



/* 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: inline-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 {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	text-align: center; 
	margin-bottom: 40px;
}

.fee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

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

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

.fee-card {
   background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #1a237e;
    text-align: center;
}

.fee-card h3 {
    color: #1a237e;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.fee-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a5f;
    margin: 16px 0;
}


/* 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: 50px 30px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #1a237e;
}

.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-title {
    color: #1a237e;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}

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

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

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

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

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

.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;
}

.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: #666;
    font-size: 0.95rem;
}

.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 i {
    font-size: 1.1rem;
}

/* Success Message */
.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;
}


/* 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;
}



/* social */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a4365;
    color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: #1a365d;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a237e 0%, #0d1b3e 100%);
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 5px solid #d4af37;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

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

.footer-title {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.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);
}

.footer-hours {
    margin: 25px;
    background: linear-gradient(135deg, #1a237e 0%, #0d1b3e 100%);
}

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

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

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

 
    .facebook { background: #3b5998; }
    .twitter { background: #1da1f2; }
    .linkedin { background: #0077b5; }
    .whatsapp { background: #25d366; }
        


.social-icon:hover {
    background: #d4af37;
    color: #1a237e;
    transform: translateY(-3px);
}

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

.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: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
}

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

.newsletter-form button {
    flex: 1;
	padding: 12px 20px;
    background: #d4af37;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #1a237e;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

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

.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 {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
}

.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-copyright p {
    color: #999;
    font-size: 0.9rem;
}

.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;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}


  /* quick additional styles for updated phone & socials */
    .footer-contact-info .phone-updated i, .contact-phone-new i { margin-right: 8px; 
	}
	
    .footer-contact-info p { 
	margin: 10px 0; 
	display: flex; 
	align-items: center; 
	gap: 10px; 
	flex-wrap: wrap; 
	}
	
    .social-icons-row { 
	display: flex; 
	gap: 15px; 
	margin: 15px 0; 
	flex-wrap: wrap; 
	}
	
    .social-circle { 
	display: inline-flex; 
	align-items: center; 
	justify-content: center; 
	width: 42px; 
	height: 42px; 
	background: #1a237e; 
	border-radius: 50%; 
	color: white; 
	font-size: 1.3rem; 
	transition: 0.3s; 
	text-decoration: none; 
	}
	
    .social-circle:hover { 
	background: #d4af37; 
	transform: translateY(-3px); 
	color: #1a237e; 
	}
	
    .phone-highlight { 
	background: #e8eaf6; 
	padding: 8px 15px; 
	border-radius: 50px; 
	display: inline-flex; 
	align-items: center; 
	gap: 8px; 
	font-weight: bold; 
	color: #1a237e; 
	border: 1px solid #d4af37; 
	}
	
    .phone-highlight i { 
	color: #d4af37; 
	font-size: 1.2rem; 
	}
	
    .footer-bottom-content { 
	text-align: center; 
	}
	
    @media (max-width: 768px) { 
	.social-circle { 
	width: 38px; 
	height: 38px; 
	font-size: 1.1rem; 
	} 
}
	
	
/* 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-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2c3e;
    color: #e2e8f0;
    padding: 24px 0;
    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;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

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

.cookie-text p {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cookie-text strong {
    color: #ffd966;
}
.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 */

[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"] .footer-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 .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;

}


/* 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;
    }

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

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

    .footer-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"] .footer-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;
    }
}

 /* quick additional styles for updated phone & socials */
    .footer-contact-info .phone-updated i, .contact-phone-new i { margin-right: 8px; 
	}
    .footer-contact-info p { 
	margin: 10px 0; 
	display: flex; 
	align-items: center; 
	gap: 10px; flex-wrap: wrap; 
	}
    .social-icons-row { 
	display: flex; 
	gap: 15px; 
	margin: 15px 0; 
	flex-wrap: wrap; 
	}
    .social-circle { 
	display: inline-flex; 
	align-items: center; 
	justify-content: center; 
	width: 42px; 
	height: 42px; 
	background: #1a237e; 
	border-radius: 50%; 
	color: white; 
	font-size: 1.3rem; 
	transition: 0.3s; 
	text-decoration: none; 
	}
    .social-circle:hover { 
	background: #d4af37; 
	transform: translateY(-3px); 
	color: #1a237e; 
	}
    .phone-highlight { 
	background: #e8eaf6; 
	padding: 8px 15px; 
	border-radius: 50px; 
	display: inline-flex; 
	align-items: center; 
	gap: 8px; 
	font-weight: bold; 
	color: #1a237e; 
	border: 1px solid #d4af37; 
	}
    .phone-highlight i { 
	color: #d4af37; 
	font-size: 1.2rem; 
	}
    .footer-bottom-content { 
	text-align: center; 
	}
    @media (max-width: 768px) { 
	.social-circle { 
	width: 38px; 
	height: 38px; 
	font-size: 1.1rem; 
	} 
}
	
			/* 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;
        }

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