 :root {
            --primary: #E11F3C;
            --primary-accent: #C01732;
            --light: #ffffff;
            --dark: #333333;
            --gray: #666666;
            --light-gray: #f5f5f5;
            --border: #eaeaea;
            --transition: all 0.3s ease;
            --primary-dark:#264571;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .top-header {
    padding: 6px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--primary);
    color: #fff;
    
}

/* .top-header-left, .top-header-right, .work-box-content, .work-box-icon {
    width: 50%;
} */

.top-header-content {
    color: #fff;
}

    .top-header-content p {
        font-weight: 600;
    }

.top-header-right-content {
    display: flex;
    justify-content: end;
    align-items: center;
}

    .top-header-right-content p {
        margin-right: 20px;
        color: skyblue;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .top-header-right-content p i {
            color: #fff;
            margin-top: 4px;
        }

        .top-header-right-content p a {
            color: #fff;
            font-weight: 600;
            text-decoration: none;
        }

#menu-button:hover, .top-header-content p span {
    font-weight: 800;
    font-size: 20px;
}

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 40px;
        }
        
        .logo {
            width: 250px;
        }
        
        .logo img {
         height: 100%;
         width: 100%;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo-text span {
            color: var(--dark);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
            font-size: 18px;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
       /* Banner Section */
        .banner {
            position: relative;
            /* min-height: 80vh; */
            display: flex;
            align-items: center;
            overflow: hidden;
            height: 100%;
            justify-content: space-between;
            width: 100%;
            padding: 0 70px;
        }

        .banner-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .banner-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(4, 29, 62, 0.85) 0%, rgba(5, 31, 65, 0.85) 100%);
            z-index: -1;
        }

        .banner-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            padding: 80px 0;
        }

        /* Left Content */
        .banner-left {
            color: var(--light);
            animation: fadeInLeft 1s ease;
            /* width: 65%; */
        }

        .banner-subtitle {
            color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: #fff;
    display: inline-block;
    padding: 0 10px;
    
    border-left: 3px solid red;
        }

        .banner-subtitle i {
            margin-right: 10px;
        }

        .banner-title {
            font-size: 2rem;
            /* font-weight: 700; */
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .banner-title span {
            color: var(--primary);
        }

        .banner-description {
            font-size: 1rem;
            margin-bottom: 35px;
            opacity: 0.9;
            text-align: justify;
            
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            background-color: var(--primary);
            color: #fff !important;
            padding: 8px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(225, 31, 60, 0.3);
        }

        .cta-button:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(225, 31, 60, 0.4);
            color: var(--primary-dark);
        }

        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Right Content - Form */
        .banner-right {
            animation: fadeInRight 1s ease;
            display: flex;
            justify-content: right;
            /* width: 35%; */
    
            
        }

        .contact-form-container {
            background-color: var(--light);
            border-radius: 15px;
            padding: 20px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            width: 450px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .form-subtitle {
            color: var(--gray);
            font-size: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            position: absolute;
            top: 16px;
            left: 15px;
            color: var(--gray);
            transition: var(--transition);
            pointer-events: none;
            background-color: var(--light);
            padding: 0 5px;
        }

        .form-control {
            width: 100%;
            padding: 16px 15px;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
            background-color: var(--light);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(225, 31, 60, 0.2);
        }

        .form-control:focus + .form-label,
        .form-control:not(:placeholder-shown) + .form-label {
            top: -10px;
            left: 10px;
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
        }

        .form-control::placeholder {
            color: transparent;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 12px;
            padding-right: 40px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        textarea.form-control {
            height: 80px;
            resize: vertical;
        }

        .submit-button {
            background-color: #1E3A5F;
            color: var(--light);
            padding: 10px 30px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s ease all;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .submit-button:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
        }

        .form-note {
            font-size: 0.85rem;
            color: var(--gray);
            text-align: center;
            margin-top: 20px;
        }

        .form-note a {
            color: var(--primary);
            text-decoration: none;
        }

        .form-note a:hover {
            text-decoration: underline;
        }

        /* Animation Keyframes */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .banner-content {
                gap: 40px;
            }
            
           
        }

        @media (max-width: 768px) {
            .banner {
                min-height: auto;
                padding: 60px 0;
            }
            
            .banner-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .banner-left, .banner-right {
                text-align: center;
            }
            
           
            
            .banner-description {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
           
            
            .contact-form-container {
                padding: 30px 25px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stats {
                gap: 20px;
            }
        }


          /* About Section */
        .about-section {
            padding: 50px 0 0 0 ;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-subtitle {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
           
            display: inline-block;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1E3A5F;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-title span {
            color: var(--primary);
        }

        .section-description {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        /* Left Content - Image & Experience */
        .about-left {
            position: relative;
        }

        .about-image-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image {
            width: 100%;
            height: 550px;
            /*object-fit: cover;*/
            transition: transform 0.8s ease;
        }

        .about-image-container:hover .about-image {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary);
            color: var(--light);
            padding: 25px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(225, 31, 60, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        .experience-years {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
        }

        .experience-text {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Right Content - About Text */
        .about-right {
            padding-left: 20px;
        }

        .about-intro {
            
            
        }

        .about-intro h3{
            padding-left: 10px;
            font-size: 1.3rem;
            font-weight: 600;
            color: #1E3A5F;
            margin-bottom: 25px;
            line-height: 1.5;
            border-left: 5px solid var(--primary);
        }
        .about-text {
            color: black;
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
        }

        .about-highlights {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
            gap: 10px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            
            padding: 40px 20px;
           box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
        }

        .highlight-icon {
            background-color:#FCE8EB;
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .highlight-content h4 {
            color: var(--secondary);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .highlight-content p {
            color: var(--gray);
            font-size: 1rem;
        }

        .about-cta {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .primary-button {
            display: inline-flex;
            align-items: center;
            background-color: var(--primary);
            color: var(--light);
            padding: 16px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(225, 31, 60, 0.3);
        }

        .primary-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(225, 31, 60, 0.4);
        }

        .primary-button i {
            margin-left: 10px;
            transition: transform 0.3s;
        }

        .primary-button:hover i {
            transform: translateX(5px);
        }

        .secondary-button {
            display: inline-flex;
            align-items: center;
            background-color: transparent;
            color: #1E3A5F;
            padding: 8px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid #1E3A5F;
            cursor: pointer;
        }

        .secondary-button:hover {
            background-color: #1E3A5F;
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
        }

        .secondary-button i {
            margin-right: 10px;
            transition: transform 0.3s;
        }

        .secondary-button:hover i {
            transform: translateX(-5px);
        }


           .services-section {
            padding: 60px 0 0 0 ;
            background-color: #F8F9FA;
            position: relative;
            overflow: hidden;
        }
  .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-bottom: 70px;
            padding: 0 40px;
        }

        .service-card {
            background-color: var(--light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 100%;
            border-top: 4px solid var(--primary);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-icon-container {
            background-color: rgba(225, 31, 60, 0.08);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            transition: var(--transition);
            z-index: 1;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2);
        }

        .service-content {
            padding: 30px;
        }

        .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: var(--light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(225, 31, 60, 0.3);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .service-description {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .service-features {
            margin: 20px 0;
            padding-left: 0;
        }

        .service-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            color: var(--gray);
        }

        .service-feature i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 3px;
            font-size: 0.9rem;
        }

        .service-button {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px;
            transition: var(--transition);
        }

        .service-button:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }

        .service-button i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .service-button:hover i {
            transform: translateX(5px);
        }

        /* Process Section */
        .process-section {
            padding: 50px 0;
            background-color: var(--light);
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin: 50px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: rgba(255, 0, 0, 0.322);
            display: none;
        }

        @media (min-width: 768px) {
            .process-step:not(:last-child)::after {
                display: block;
            }
        }
         @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--light);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                gap: 15px;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
          
        }

        .process-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(255, 0, 0, 0.05);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .process-step:hover .process-icon {
            background-color: var(--primary);
            color: var(--light);
            transform: scale(1.1);
        }

        .process-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .process-description {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            
            padding: 60px;
            background: linear-gradient(135deg,  #000000 0%, #020202 100%);
            
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('1951641.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            opacity: 0.5;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-title span{
            /* color: #c01a33; */
        }
        .cta-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            background-color: var(--primary);
            color: var(--light);
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(225, 31, 60, 0.3);
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(225, 31, 60, 0.4);
            color: var(--primary-dark) !important;
        }

        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 70px 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-content {
                padding: 25px;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
            
            .process-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }




















        /* Footer */

          .footer {
            background: linear-gradient(135deg, #0c1a3a 0%, #1a2b55 100%);
            color: white;
            padding: 60px 0 0;
            position: relative;
            overflow: hidden;
            margin-top: 30px;
        }

        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #c01732, #274572);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-main p {
            text-align: center;
            border-bottom: 1px solid #fff;
            padding-bottom: 15px;
        
            
        }

        @media (max-width: 992px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .footer-brand {
            flex: 1;
        }

        .law-firm-name {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
        }

        .law-firm-name span {
            color: #c01732;
        }

        .footer-tagline {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 25px;
            max-width: 400px;
        }

        .contact-info {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #fff;
            font-size: 1.1rem;
        }

        .contact-text {
            font-size: 1rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        .links-column h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .links-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #c01732;
        }

        .footer-links-list {
            list-style: none;
        }

        .footer-links-list li {
            margin-bottom: 12px;
        }

        .footer-links-list a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
        }

        .footer-links-list a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links-list a i {
            margin-right: 8px;
            color: #c01732;
            font-size: 0.9rem;
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 30px 0;
        }

        .footer-bottom {
            padding: 15px 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                
            }
        }

        .copyright {
            color: rgba(255, 255, 255);
            font-size: 0.95rem;
           
        }

        
        .copy-right a{
            text-decoration: none;
            color: #fff;
            padding-left: 20px;
            font-size: 0.95rem;
        }
        .legal-links {
            display: flex;
            gap: 25px;
        }

        @media (max-width: 480px) {
            .legal-links {
                flex-direction: column;
                gap: 10px;
            }
        }

        .legal-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: white;
        }

      
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
           
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .badge i {
            color: #fff;
            font-size: 1.2rem;
        }
        .badge a{
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 50px;
            height: 50px;
            background: #c01732;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(192, 23, 50, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .back-to-top:hover {
            background: #274572;
            transform: translateY(-5px);
        }

        
      

        .faq-section{
            background-color: #F3F5F8;
        }
         .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .faq-header h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .faq-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-accent);
            border-radius: 2px;
        }

        .faq-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 20px auto 0;
        }

      

        .faq-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .faq-item {
            background: var(--light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(39, 69, 114, 0.08);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(39, 69, 114, 0.15);
        }

        .faq-item:nth-child(odd) {
            border-left-color: var(--primary-dark);
        }

        .faq-item:nth-child(even) {
            border-left-color: var(--primary-accent);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: rgba(39, 69, 114, 0.03);
        }

        .faq-question h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-right: 20px;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: var(--primary-dark);
            border-radius: 50%;
            display: flex;
           
            justify-content: center;
            color: white;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .faq-item.active .faq-icon {
            background: var(--primary-accent);
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            background-color: rgba(192, 23, 50, 0.02);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 30px;
        }

        .faq-answer p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .faq-answer ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .faq-answer li {
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .highlight {
            color: var(--primary-accent);
            font-weight: 600;
        }

        .legal-note {
            margin-top: 50px;
            padding: 25px;
            background: var(--primary-dark);
            border-radius: 12px;
            color: white;
            text-align: center;
            box-shadow: 0 8px 20px rgba(39, 69, 114, 0.2);
        }

        .legal-note h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: white;
        }

        .legal-note p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .legal-note a {
            color: white;
            text-decoration: underline;
            font-weight: 600;
            transition: var(--transition);
        }

        .legal-note a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

       

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-container {
                padding: 10px;
            }

            .faq-header h1 {
                font-size: 2.2rem;
            }

            .faq-header p {
                font-size: 1.1rem;
            }

            .keyword-tags {
                gap: 8px;
            }

            .keyword-tag {
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 1.1rem;
            }

            .faq-answer p, .faq-answer li {
                font-size: 1rem;
            }

            .cta-section {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            .faq-header h1 {
                font-size: 1.8rem;
            }

            .keyword-tags {
                flex-direction: column;
                align-items: center;
            }

            .keyword-tag {
                width: 100%;
                text-align: center;
            }
        }
         .testimonials-container {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
        }

     
        .slider-container {
            position: relative;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            transition: transform 0.4s ease;
        }

        .slide {
            min-width: 100%;
            display: flex;
            gap: 30px;
            padding: 10px;
        }

        /* Testimonial Cards */
        .testimonial-card {
            flex: 1;
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #eee;
        }

        /* Rating */
        .rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .star {
            color: #ddd;
            font-size: 1.1rem;
        }

        .star.filled {
            color: #ffc107;
        }

        /* Review Text */
        .review-text {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            padding-left: 25px;
        }

        .review-text:before {
            content: "“";
            position: absolute;
            left: 0;
            top: -15px;
            font-size: 3.5rem;
            color: #e9ecef;
            font-family: Georgia, serif;
            line-height: 1;
        }

        /* Client Info */
        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .client-details h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .client-details p {
            color: #777;
            font-size: 0.9rem;
        }

        /* Client Tags */
        .client-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .tag {
            background: #f5f5f5;
            color: #666;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
        }

        /* Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 1px solid #ddd;
            color: #555;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: #f0f0f0;
            border-color: #bbb;
            transform: scale(1.05);
        }

        .nav-btn:active {
            transform: scale(0.95);
        }

        .nav-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #555;
            transform: scale(1.2);
        }

        .dot:hover {
            background: #bbb;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slide {
                flex-direction: column;
                gap: 20px;
                padding: 5px;
            }
            
            .testimonial-card {
                padding: 25px;
            }
            
            .review-text {
                font-size: 1rem;
                padding-left: 20px;
            }
            
            .review-text:before {
                font-size: 3rem;
                top: -10px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                padding: 20px;
            }
            
            .client-info {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .nav-btn {
                width: 45px;
                height: 45px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }

         .justice-pulse-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: linear-gradient(135deg, #c01732 0%, #a8122a 100%);
            color: white !important;
            font-size: 1.4rem;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 
                0 10px 30px rgba(192, 23, 50, 0.4),
                0 0 0 0 rgba(192, 23, 50, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.2);
            letter-spacing: 0.5px;
            animation: pulse-glow 2s infinite;
            z-index: 1;
        }

        @keyframes pulse-glow {
            0% {
                box-shadow: 
                    0 10px 30px rgba(192, 23, 50, 0.4),
                    0 0 0 0 rgba(192, 23, 50, 0.7);
            }
            70% {
                box-shadow: 
                    0 10px 30px rgba(192, 23, 50, 0.4),
                    0 0 0 20px rgba(192, 23, 50, 0);
            }
            100% {
                box-shadow: 
                    0 10px 30px rgba(192, 23, 50, 0.4),
                    0 0 0 0 rgba(192, 23, 50, 0);
            }
        }

        .justice-pulse-btn:hover {
            transform: translateY(-5px) scale(1.05);
            animation: none;
            transition: all 0.4s ease;
            box-shadow: 
                0 15px 40px rgba(192, 23, 50, 0.6),
                0 0 30px rgba(192, 23, 50, 0.4);
        }

        .justice-pulse-btn:active {
            transform: translateY(0) scale(0.98);
        }

        /* Button shine effect */
        .justice-pulse-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .justice-pulse-btn:hover::before {
            left: 100%;
        }

        .whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #129b44;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,.3);
    z-index: 1000;
    transition: .3s;
    overflow: hidden;
    text-decoration: none;
}
.whatsapp-sticky-btn i {
    font-size: 45px;
    transition: .3s;
}

.whatsapp-sticky-btn span {
    position: absolute;
    font-size: 0;
    opacity: 0;
    transition: .3s;
    font-weight: 600;
}

.whatsapp-sticky-btn:hover {
    width: 160px;
    border-radius: 30px;
    background: #128c7e;
}

    .whatsapp-sticky-btn:hover i {
        transform: translateX(-45px);
    }

    .whatsapp-sticky-btn:hover span {
        font-size: 14px;
        opacity: 1;
        transform: translateX(20px);
    }

.whatsapp-sticky-btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 0 0;
    animation: 2s infinite pulse;
}

@media (max-width:940px) {
     .banner{
        height: 100%;
        padding: 0 20px;
    }
    .banner-content{
        display: block;
    }
    .banner-right {
        margin-top: 35px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width:768) {
    .about-content {
        display: block !important;
    }
    .about-image{
        margin-bottom: 20px;
    }
    .faq-item.active .faq-answer{
        max-height: 100% !important;
    }
     .top-header{
        display: flex;
        justify-content: center !important;
    }
     .banner-description {
            text-align: center;
        }
}

@media (max-width:576px){
    .faq-item.active .faq-answer{
        max-height: 100% !important;
    }
    .top-header{
        display: flex;
        justify-content: center;
        padding: 5px 0;
    }

    .header-container{
        padding: 0px 20px;
    }

    .logo{
        width: 170px;
    }

    .banner{
        height: 100%;
        padding: 0;
    }

    .banner-content{
        padding: 80px 0px 40px 0px;
    }
    .banner-left {
        padding: 0 15px;
    }
    .contact-form-container {
        width: 95%;
        margin: 0 auto;
    }

    .about-content {
        display: block;
        margin-bottom: 40px;
    }
    .about-image {
        height: 350px;
        margin-bottom: 20px;
    }
    .about-right{
        padding-left: 0 ;
    }
    .section-description {
        padding: 0 10px;
    }
    .services-section{
        padding-bottom: 0;
    }
    .process-section {
        margin: 10px 10px 20px 10px;
    }

    .contact-info {
        display: block;
    }
    .trust-badges {
        justify-content: start;
        margin-top: 20px;
    }
    .footer{
        padding-top: 20px;
    }

      .services-grid{
        padding: 0 20px;
        display: grid;
        justify-content: center;
      }
      .top-header-right-content p a {
        font-size: 14px;
      }
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
            font-size: 16px;
        }
        .banner-subtitle{
            font-size: 14px;
        }
        .banner-subtitle i{
            margin-right: 2px !important;
        }
        .banner-title{
            font-size: 1.6rem ;
        }
        .banner-description {
            text-align: center;
        }
        .faq-question h3{
            font-size: 1rem;
            line-height: 1.2rem;
        }
        .about-intro h3{
            line-height: 1.5rem;
        }
        .cta-title {
    font-size: 1.8rem;
    line-height: 1.9rem;
}
.cta-description{
    line-height: 1.4rem;
}
.footer-main p{
    line-height: 1.3rem;
}
}
