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

.logo-text {
    font-size: 20px;
    /* This is for "Qureshi & Co." */
    color: white;
    text-align: left;
}

.logo-text .tagline {
    font-size: 14px;
    /* Change this value to your preference */
    font-weight: 400;
    /* Optional: 400 for normal, 300 for light */
    display: block;
    margin-top: -2px;
    color: #ccc;
    /* Lighter gray for subtle look, adjust as needed */
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;

}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a:hover {
    color: #cccccc;
    transform: translateY(-2px);
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.cta-button {
    background: #ffffff;
    color: #000000;
    padding: 12px 25px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 3px solid #333333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image-container::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Hero Section with Slideshow */
.qureshi-hero-slideshow {
    position: relative;
    height: fit-content;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Slides */
.qureshi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.qureshi-slide.active {
    opacity: 1;
}

.qureshi-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Hero Content */
.qureshi-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    
    min-height: 80vh;
}

.qureshi-hero-text {
    color: #ffffff;
}

.qureshi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.qureshi-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.qureshi-hero-title-1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family:'Times New Roman', Times, serif
}

.qureshi-hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.qureshi-hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.qureshi-btn-primary {
    background: #ffffff;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qureshi-btn-primary:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.qureshi-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qureshi-btn-secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Hero Logo/Emblem */
.qureshi-hero-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qureshi-emblem-circle {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.qureshi-emblem-inner {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #d4af37;
}

.qureshi-emblem-stars {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.qureshi-star {
    color: #d4af37;
    font-size: 1.5rem;
}

.qureshi-emblem-scales {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.qureshi-emblem-text {
    text-align: center;
    color: #d4af37;
}

.qureshi-emblem-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.qureshi-emblem-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Slideshow Controls */
.qureshi-slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.qureshi-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s ease;
}

.qureshi-indicator.active {
    background: #d4af37;
    transform: scale(1.2);
}

.qureshi-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    z-index: 20;
}

.qureshi-slide-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.qureshi-slide-prev {
    left: 30px;
}

.qureshi-slide-next {
    right: 30px;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.qureshi-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .qureshi-hero-content {
        gap: 60px;
    }

    .qureshi-hero-title {
        font-size: 3.5rem;
    }

    .qureshi-emblem-circle {
        width: 350px;
        height: 350px;
    }

    .qureshi-emblem-inner {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 968px) {
    .qureshi-nav-links {
        display: none;
    }

    .qureshi-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .qureshi-hero-title {
        font-size: 3rem;
    }

    .qureshi-emblem-circle {
        width: 300px;
        height: 300px;
    }

    .qureshi-emblem-inner {
        width: 240px;
        height: 240px;
    }
}

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

    .qureshi-hero-description {
        font-size: 1.1rem;
    }

    .qureshi-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .qureshi-slide-nav {
        display: none;
    }

    .qureshi-hero-content {
     padding: 60px 20px
  }
 
}

@media (max-width: 480px) {
    .qureshi-hero-title {
        font-size: 2rem;
    }

    .qureshi-emblem-circle {
        width: 250px;
        height: 250px;
    }

    .qureshi-emblem-inner {
        width: 200px;
        height: 200px;
    }
}


/* About Section - Fixed Image */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Fixed About Image - No Floating */
.about-image-fixed {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    /* Remove any transform or position properties that cause floating */
}

.about-image-fixed:hover {
    transform: translateY(-10px);
}

.office-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Ensure image stays in place */
    position: relative;
}

.about-image-fixed:hover .office-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #000000, #000000);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.overlay-icon {
    font-size: 24px;
    color: white;
}

.about-text {
    padding: 20px 0;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.intro-text {
    font-size: 1.2rem !important;
    color: #333 !important;
}

.intro-text strong {
    color: #d4af37;
    font-weight: 700;
}

.closing-text {
    font-weight: 500;
    color: #1a1a2e !important;
    font-style: italic;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #2E2E2E 0%, #2E2E2E 100%);
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid #333333;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 8, 8, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(13, 0, 0, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    border: 2px solid #333333;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.stat-label {
    color: #f4f4f4;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.team-image {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.team-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
}

.experience-badge {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    border: 2px solid white;
}

.team-info {
    position: relative;
    z-index: 2;
}

.team-name {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.team-designation {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-experience {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animation Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-stat {
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image-container {
        width: 300px;
        height: 300px;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-section {
        padding: 40px 20px;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 22px;
    }

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

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-name {
        font-size: 1.3rem;
    }
}


/* our client */
/* Qureshi Clients Section - Updated with Categories */
.qureshi-clients-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.qureshi-clients-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="qureshi-premium-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L40 20L20 40L0 20Z" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23qureshi-premium-pattern)"/></svg>');
}

.qureshi-clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.qureshi-clients-header {
    text-align: center;
    margin-bottom: 80px;
}

.qureshi-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.qureshi-decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.qureshi-decoration-icon {
    font-size: 2rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.qureshi-clients-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qureshi-clients-intro {
    max-width: 800px;
    margin: 0 auto;
}

.qureshi-clients-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.qureshi-clients-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
}

/* Client Categories */
.qureshi-client-categories {
    margin-bottom: 100px;
}

.qureshi-category-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.qureshi-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.qureshi-category-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #000000, #0e0e0d);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.qureshi-category-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.qureshi-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.qureshi-category-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.qureshi-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.qureshi-category-card:hover::before {
    left: 100%;
}

.qureshi-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.qureshi-category-logo {
    text-align: center;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qureshi-category-img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.qureshi-category-card:hover .qureshi-category-img {
    transform: scale(1.1);
    filter: brightness(1.3) contrast(1.2);
}

.qureshi-category-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.qureshi-category-name {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.qureshi-category-type {
    color: #d4af37;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Cards */
.qureshi-category-card.qureshi-featured {
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    position: relative;
}

.qureshi-featured-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.qureshi-premium-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    animation: qureshi-glow 2s ease-in-out infinite alternate;
}

@keyframes qureshi-glow {
    from {
        box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
    }

    to {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    }
}

.qureshi-category-card.qureshi-premium {
    border: 2px solid rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.08);
}

/* Animation Classes */
.qureshi-animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: qureshi-fadeInUp 0.8s ease forwards;
}

@keyframes qureshi-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .qureshi-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .qureshi-clients-section {
        padding: 80px 0;
    }

    .qureshi-clients-title {
        font-size: 2.5rem;
    }

    .qureshi-clients-subtitle {
        font-size: 1.1rem;
    }

    .qureshi-category-section {
        padding: 25px;
        margin-bottom: 40px;
    }

    .qureshi-category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .qureshi-category-title {
        font-size: 1.6rem;
    }

    .qureshi-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qureshi-trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .qureshi-trust-item {
        padding: 20px 15px;
    }

    .qureshi-trust-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .qureshi-clients-title {
        font-size: 2rem;
    }

    .qureshi-category-icon {
        font-size: 2rem;
        padding: 12px;
    }

    .qureshi-category-title {
        font-size: 1.4rem;
    }

    .qureshi-trust-stats {
        grid-template-columns: 1fr;
    }

    .qureshi-decoration-line {
        width: 50px;
    }
}

/* Practice area */
/* Qureshi Interactive Practice Areas Section */
.qureshi-interactive-practice-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.qureshi-interactive-practice-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
}

.qureshi-interactive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.qureshi-interactive-header {
    text-align: center;
    margin-bottom: 80px;
}

.qureshi-interactive-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.qureshi-interactive-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Interactive Content */
.qureshi-interactive-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    
}

/* Left Sidebar */
.qureshi-practice-sidebar {
    background: linear-gradient(135deg, #8B1538 0%, #A91B47 50%, #C41E3A 100%);
    position: relative;
    overflow: hidden;
}

.qureshi-practice-sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="qureshi-sidebar-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L40 20L20 40L0 20Z" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23qureshi-sidebar-pattern)"/></svg>');
}

.qureshi-practice-list {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.qureshi-practice-item {
    position: relative;
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qureshi-practice-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

.qureshi-practice-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #d4af37;
    transform: translateX(15px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.qureshi-practice-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.qureshi-practice-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    flex: 1;
}

.qureshi-practice-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-left: 15px;
}

.qureshi-practice-item.active .qureshi-practice-indicator {
    background: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    transform: scale(1.5);
}

/* Right Content Area */
.qureshi-practice-display {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.qureshi-practice-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.qureshi-practice-content.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.qureshi-practice-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.qureshi-content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.qureshi-practice-content.active .qureshi-content-img {
    transform: scale(1.05);
}

.qureshi-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 46, 0.85) 0%,
            rgba(26, 26, 46, 0.7) 50%,
            rgba(26, 26, 46, 0.85) 100%);
    display: flex;
    align-items: center;
    padding: 60px;
}

.qureshi-content-text {
    max-width: 600px;
    color: #ffffff;
}

.qureshi-content-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qureshi-content-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.qureshi-content-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.qureshi-feature-item {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.qureshi-content-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.qureshi-content-btn:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.qureshi-btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.qureshi-content-btn:hover .qureshi-btn-arrow {
    transform: translateX(5px);
}

/* Animation Classes */
.qureshi-interactive-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: qureshi-interactive-fadeInUp 0.8s ease forwards;
}

@keyframes qureshi-interactive-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .qureshi-interactive-content {
        grid-template-columns: 350px 1fr;
    }

    .qureshi-content-overlay {
        padding: 40px;
    }

    .qureshi-content-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 968px) {
    .qureshi-interactive-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .qureshi-practice-sidebar {
        order: 2;
    }

    .qureshi-practice-display {
        order: 1;
        position: relative;
        min-height: 500px;
    }

    .qureshi-practice-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 20px;
        gap: 10px;
    }

    .qureshi-practice-item {
        padding: 15px 20px;
        border-radius: 10px;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
    }

    .qureshi-practice-item:hover,
    .qureshi-practice-item.active {
        transform: translateY(-5px);
        border-bottom-color: #d4af37;
    }

    .qureshi-practice-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .qureshi-interactive-practice-section {
        padding: 80px 0;
    }

    .qureshi-interactive-title {
        font-size: 2.5rem;
    }

    .qureshi-interactive-subtitle {
        font-size: 1.1rem;
    }

    .qureshi-content-overlay {
        padding: 30px;
    }

    .qureshi-content-title {
        font-size: 2rem;
    }

    .qureshi-content-description {
        font-size: 1rem;
    }

    .qureshi-content-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .qureshi-practice-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .qureshi-interactive-title {
        font-size: 2rem;
    }

    .qureshi-content-title {
        font-size: 1.8rem;
    }

    .qureshi-content-overlay {
        padding: 20px;
    }

    .qureshi-content-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .qureshi-practice-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .qureshi-practice-areas-section {
        padding: 80px 0;
    }
    
    .qureshi-practice-title {
        font-size: 2.5rem;
    }
    
    .qureshi-practice-subtitle {
        font-size: 1.1rem;
    }
    
    .qureshi-practice-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .qureshi-practice-card {
        margin: 0 10px;
    }
    
    .qureshi-practice-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .qureshi-practice-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .qureshi-practice-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 20px;
    }
    
    .qureshi-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .qureshi-practice-title {
        font-size: 2rem;
    }
    
    .qureshi-practice-name {
        font-size: 1.5rem;
    }
    
    .qureshi-practice-main-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .qureshi-practice-stats {
        grid-template-columns: 1fr;
    }
    
    .qureshi-practice-line {
        width: 50px;
    }
}
/* Footer Styles */
.qureshi-footer {
    background: #000000;
    color: #ffffff;
    position: relative;
    border-top: 1px solid #333;
}

.qureshi-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Main Footer Content */
.qureshi-footer-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

/* Left Side - Company Logo */
.qureshi-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qureshi-footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.qureshi-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.qureshi-footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.qureshi-footer-tagline {
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 500;
    margin-top: 2px;
}

/* Center - Navigation Links */
.qureshi-footer-nav {
    display: flex;
    justify-content: center;
}

.qureshi-nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.qureshi-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.qureshi-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.qureshi-nav-links a:hover {
    color: #d4af37;
}

.qureshi-nav-links a:hover::after {
    width: 100%;
}

/* Right Side - Social Media Icons */
.qureshi-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.qureshi-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qureshi-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.qureshi-social-link:hover::before {
    left: 100%;
}

.qureshi-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp specific styling */
.qureshi-social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

/* LinkedIn specific styling */
.qureshi-social-link.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #ffffff;
}

/* Email specific styling */
.qureshi-social-link.email:hover {
    background: #ea4335;
    border-color: #ea4335;
    color: #ffffff;
}

/* Footer Bottom */
.qureshi-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.qureshi-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.qureshi-address-short {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: right;
}

/* Animations */
.qureshi-footer-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.footer-logo {
    width: 20px;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .qureshi-footer-main {
        gap: 40px;
    }

    .qureshi-nav-links {
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .qureshi-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .qureshi-footer-nav {
        order: 2;
    }

    .qureshi-social-icons {
        order: 3;
        justify-content: center;
    }

    .qureshi-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .qureshi-footer-container {
        padding: 30px 20px;
    }

    .qureshi-footer-main {
        gap: 25px;
    }

    .qureshi-nav-links {
        gap: 15px;
    }

    .qureshi-nav-links a {
        font-size: 0.9rem;
    }

    .qureshi-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .qureshi-address-short {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .qureshi-footer-company-name {
        font-size: 1.3rem;
    }

    .qureshi-nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .qureshi-social-icons {
        gap: 15px;
    }

    .qureshi-social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Why Choose Us Section Styles */
.qureshi-why-choose-us {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.qureshi-choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.qureshi-choose-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.qureshi-choose-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
}

.qureshi-choose-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.qureshi-choose-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Key Points Grid */
.qureshi-key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.qureshi-point-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.qureshi-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);
    transition: left 0.6s ease;
}

.qureshi-point-card:hover::before {
    left: 100%;
}

.qureshi-point-card:hover {
    border-color: #000000;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.qureshi-point-card:nth-child(odd):hover {
    background: #000000;
    color: #ffffff;
}

.qureshi-point-card:nth-child(even):hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.qureshi-point-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.qureshi-point-card:hover .qureshi-point-icon {
    transform: scale(1.1) rotate(5deg);
}

.qureshi-point-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.qureshi-point-card:hover .qureshi-point-title {
    color: inherit;
}

.qureshi-point-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.qureshi-point-card:hover .qureshi-point-description {
    color: inherit;
    opacity: 0.9;
}

/* Commitment Section */
.qureshi-commitment-section {
    background: #000000;
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.qureshi-commitment-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.qureshi-commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.qureshi-commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.qureshi-commitment-bullet {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Call to Action */
.qureshi-choose-cta {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.qureshi-choose-cta:hover {
    background: #000000;
    color: #ffffff;
}

.qureshi-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.qureshi-choose-cta:hover .qureshi-cta-title {
    color: #ffffff;
}

.qureshi-cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.3s ease;
}

.qureshi-choose-cta:hover .qureshi-cta-description {
    color: rgba(255, 255, 255, 0.9);
}

.qureshi-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.qureshi-cta-primary,
.qureshi-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.qureshi-cta-primary {
    background: #000000;
    color: #ffffff;
}

.qureshi-cta-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.qureshi-choose-cta:hover .qureshi-cta-primary {
    background: #ffffff;
    color: #000000;
}

.qureshi-choose-cta:hover .qureshi-cta-secondary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.qureshi-cta-primary:hover,
.qureshi-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .qureshi-key-points {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .qureshi-why-choose-us {
        padding: 80px 0;
    }

    .qureshi-choose-title {
        font-size: 3rem;
    }

    .qureshi-key-points {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .qureshi-point-card {
        padding: 30px 25px;
    }

    .qureshi-commitment-section {
        padding: 50px 30px;
    }

    .qureshi-commitment-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .qureshi-choose-title {
        font-size: 2.5rem;
    }

    .qureshi-choose-subtitle {
        font-size: 1.1rem;
    }

    .qureshi-key-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qureshi-commitment-title {
        font-size: 2rem;
    }

    .qureshi-cta-title {
        font-size: 2rem;
    }

    .qureshi-choose-cta {
        padding: 40px 30px;
    }

    .qureshi-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .qureshi-choose-title {
        font-size: 2rem;
    }

    .qureshi-point-card {
        padding: 25px 20px;
    }

    .qureshi-choose-line {
        width: 50px;
    }

    .qureshi-commitment-section {
        padding: 40px 20px;
    }
}


/* contact us */
/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

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

        
        /* Contact Section */
        .qureshi-contact {
            padding: 80px 0;
            background: #ffffff;
        }

        .qureshi-contact-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .qureshi-contact-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            gap: 20px;
        }

        .qureshi-contact-line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #000000, transparent);
        }

        .qureshi-contact-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #000000;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            font-family: 'Playfair Display', serif;
        }

        .qureshi-contact-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Contact Content Grid */
        .qureshi-contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        /* Contact Form */
        .qureshi-contact-form {
            background: #ffffff;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 50px 40px;
            transition: all 0.4s ease;
        }

        .qureshi-contact-form:hover {
            border-color: #000000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .qureshi-form-title {
            font-size: 2rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 30px;
            font-family: 'Playfair Display', serif;
        }

        .qureshi-form-group {
            margin-bottom: 25px;
        }

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

        .qureshi-form-input,
        .qureshi-form-select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .qureshi-form-input:focus,
        .qureshi-form-select:focus {
            outline: none;
            border-color: #000000;
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }

        .qureshi-form-select {
            cursor: pointer;
        }

        .qureshi-submit-btn {
            width: 100%;
            background: #000000;
            color: #ffffff;
            border: none;
            padding: 18px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .qureshi-submit-btn:hover {
            background: #333333;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Contact Info - Updated to white background with black border */
        .qureshi-contact-info {
            background: #ffffff;
            color: #000000;
            border: 2px solid #000000;
            border-radius: 20px;
            padding: 50px 40px;
            transition: all 0.4s ease;
        }

        .qureshi-contact-info:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .qureshi-info-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            font-family: 'Playfair Display', serif;
            color: #000000;
        }

        .qureshi-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .qureshi-info-item:hover {
            background: #000000;
            color: #ffffff;
            transform: translateX(5px);
        }

        .qureshi-info-icon {
            font-size: 1.5rem;
            margin-top: 2px;
        }

        .qureshi-info-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #000000;
            transition: color 0.3s ease;
        }

        .qureshi-info-item:hover .qureshi-info-content h4 {
            color: #ffffff;
        }

        .qureshi-info-content p {
            color: #666;
            line-height: 1.5;
            transition: color 0.3s ease;
        }

        .qureshi-info-item:hover .qureshi-info-content p {
            color: rgba(255, 255, 255, 0.9);
        }

        .qureshi-info-content a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .qureshi-info-item:hover .qureshi-info-content a {
            color: #ffffff;
        }

        .qureshi-info-content a:hover {
            text-decoration: underline;
        }

        /* Office Locations */
        .qureshi-offices {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .qureshi-offices-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .qureshi-offices-title {
            font-size: 3rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .qureshi-offices-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .qureshi-offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
        }

        .qureshi-office-card {
            background: #ffffff;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .qureshi-office-card:hover {
            border-color: #000000;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .qureshi-office-info {
            padding: 30px;
        }

        .qureshi-office-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .qureshi-office-address {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .qureshi-office-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .qureshi-office-contact a {
            color: #000000;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .qureshi-office-contact a:hover {
            color: #666;
        }

        .qureshi-office-map {
            height: 300px;
            width: 100%;
        }

        .qureshi-office-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        .qureshi-footer {
            background: #000000;
            color: #ffffff;
            padding: 40px 0 20px;
        }

        .qureshi-footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

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

        .qureshi-social-icons {
            display: flex;
            gap: 15px;
        }

        .qureshi-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .qureshi-social-link:hover {
            background: #ffffff;
            color: #000000;
            transform: translateY(-3px);
        }

        .qureshi-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .qureshi-hero-content {
                gap: 40px;
            }

            .qureshi-offices-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .qureshi-hero {
                padding: 120px 0 60px;
            }

            .qureshi-hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .qureshi-hero-title {
                font-size: 3rem;
            }

            .qureshi-contact {
                padding: 60px 0;
            }

            .qureshi-contact-title {
                font-size: 3rem;
            }

            .qureshi-contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .qureshi-offices-title {
                font-size: 2.5rem;
            }
        }

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

            .qureshi-hero-subtitle {
                font-size: 1.2rem;
            }

            .qureshi-hero-buttons {
                justify-content: center;
            }

            .qureshi-contact-title {
                font-size: 2.5rem;
            }

            .qureshi-contact-form,
            .qureshi-contact-info {
                padding: 40px 30px;
            }

            .qureshi-office-info {
                padding: 25px;
            }

            .qureshi-footer-main {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .qureshi-footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .qureshi-hero-title {
                font-size: 2rem;
            }

            .qureshi-hero-image img {
                height: 350px;
            }

            .qureshi-contact-title {
                font-size: 2rem;
            }

            .qureshi-contact-form,
            .qureshi-contact-info {
                padding: 30px 20px;
            }

            .qureshi-contact-line {
                width: 50px;
            }

            .qureshi-offices-grid {
                grid-template-columns: 1fr;
            }

            .qureshi-hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Disclaimer */
