@charset "utf-8";
/* CSS Document */

.mobile{ display: none;}
.desk{ display: block;}

  .law-section {
      background: linear-gradient(135deg, #eef7f9, #f8fcfd);
            padding: 60px 0;
        }

        .law-title {
            font-size: 36px;
            font-weight: 700;
            color: #1F7D8B;
        }

        .law-title span {
            color: #0f4f58;
        }

        .law-text {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-top: 20px;
            text-align: justify;
        }

        

        .law-btn {
            background-color: #1F7D8B;
            color: #fff;
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            margin-top: 20px;
            transition: 0.3s;
        }

        .law-btn:hover {
            background-color: #155e69;
        }

        .law-img {
            border-radius: 12px;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .law-title {
        font-size: 24px;
        line-height: 30px;
    }
            .mtm-20{ margin-top: 20px;}
            .desk{ display: none;}
            .mobile{ display: block; margin-bottom: 20px;}
        }

/*---------------Types of Cases We Handle-----------------------*/
/* Section */



.ta-modern-section {
     background: linear-gradient(135deg, #eef7f9, #f8fcfd);
    padding: 60px 0;
}

/* Heading */
.ta-modern-heading {
    text-align: center;
    margin-bottom: 60px;
}

.ta-modern-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1F7D8B;
}

.ta-modern-heading p {
    color: #222;
    max-width: 750px;
    margin: 15px auto 0;
}

/* Card */
.ta-modern-card {
    position: relative;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(31,125,139,0.15);
    transition: all 0.4s ease;
    min-height: 360px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* Gradient border effect */
.ta-modern-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, #1F7D8B, transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ta-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(31,125,139,0.15);
}

/* Icon */
.ta-modern-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F7D8B, #3aa6b5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ta-modern-icon i {
    color: #fff;
    font-size: 24px;
}

/* Title */
.ta-modern-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F7D8B;
    margin-bottom: 10px;
}

/* Text */
.ta-modern-text {
    font-size: 14.5px;
    color: #222;
    line-height: 1.7;
}

/* Hover glow line */
.ta-modern-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #1F7D8B;
    transition: 0.4s;
}

.ta-modern-card:hover::after {
    width: 100%;
}

/*------------------Faq Section--------*/
/* Section */
.ta-faq-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Heading */
.ta-faq-heading {
    text-align: center;
    margin-bottom: 50px;
}



.ta-faq-heading p {
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

/* Accordion */
.ta-accordion .accordion-item {
    border: 1px solid #e9f1f2;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: 0.3s;
}

.ta-accordion .accordion-item:hover {
    border-color: #1F7D8B;
}

/* Question */
.ta-accordion .accordion-button {
    background: #ffffff;
    color: #1F7D8B;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    box-shadow: none;
    border: none;
    width: 100%;
    display: block;
    text-align: left;
}

.accordion-header{
    margin-bottom: 0px;
}

.ta-accordion .accordion-button:not(.collapsed) {
    background: #f2fbfc;
    color: #1F7D8B;    
}

.ta-accordion .accordion-button:focus {
    box-shadow: none;
}

/* Icon */
.ta-accordion .accordion-button::after {
    font-family: "Font Awesome 6 Free";
    content: "\f067";
    font-weight: 900;
    background-image: none;
}

.ta-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

/* Answer */
.ta-accordion .accordion-body {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    padding: 20px;
    border-top: 1px solid #eee;
    background: #ffffff;
}


/*-----------Our Legal Services in Delhi, Noida,---------------------*/
/* Section */
/* Section */
.ls-compact-section {
    padding: 60px 0;
    
}

/* Header */
.ls-compact-header {
    text-align: center;
    margin-bottom: 35px;
}

.ls-compact-header h2 {
    color: #1F7D8B;
    font-weight: 700;
    font-size: 34px;
}

.ls-compact-header p {
    color: #555;
    max-width: 750px;
    margin: 10px auto 0;
    font-size: 15px;
    line-height: 1.7;
}

/* Grid */
.ls-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

/* Card */
.ls-compact-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #e9f1f2;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff;
    transition: 0.25s;
}

.ls-compact-card:hover {
    border-color: #1F7D8B;
    background: #f8fcfd;
}

/* Icon */
.ls-compact-icon {
    color: #1F7D8B;
    font-size: 14px;
    margin-top: 3px;
}

/* Text */
.ls-compact-text strong {
    color: #1F7D8B;
    font-size: 14px;
}

.ls-compact-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Bottom */
.ls-compact-bottom {
    margin-top: 25px;
    text-align: center;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/*------------------------------------*/
/* Section */
.ls-fees-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #eef7f9, #f8fcfd);
}

/* Image */
.ls-fees-img {
    border-radius: 15px;
    overflow: hidden;
}

.ls-fees-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Heading */
.ls-fees-heading h2 {
    color: #1F7D8B;
    font-weight: 700;
    font-size: 34px;
}

.ls-fees-intro {
    color: #555;
    margin-top: 15px;
    line-height: 1.8;
}

/* Cards */
.ls-fees-box {
    border: 1px solid #e9f1f2;
    border-radius: 10px;
    padding: 18px;
    margin-top: 15px;
    transition: 0.3s;
    background: #fff;
}

.ls-fees-box:hover {
    border-color: #1F7D8B;
    background: #f8fcfd;
}

/* Title */
.ls-fees-title {
    font-weight: 600;
    color: #1F7D8B;
    margin-bottom: 6px;
}

/* Text */
.ls-fees-text {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Icon */
.ls-fees-icon {
    color: #1F7D8B;
    margin-right: 8px;
}

/* CTA */
.ls-fees-cta {
    margin-top: 25px;
    padding: 18px;
    border-radius: 10px;
    background: #1F7D8B;
    color: #fff;
}

.ls-fees-cta strong {
    display: block;
    margin-bottom: 5px;
}

/*------------------------------------*/
/* Section */
.ls-area-section {
    padding: 60px 0;
}

/* Header */
.ls-area-header {
    text-align: center;
    margin-bottom: 35px;
}

.ls-area-header h2 {
    color: #1F7D8B;
    font-weight: 700;
}

.ls-area-header p {
    color: #555;
    max-width: 800px;
    margin: 10px auto 0;
    font-size: 15px;
}

/* Cards */
.ls-area-card {
    background: #1F7D8B;
    border-radius: 12px;
    padding: 20px;    
    transition: 0.3s;
    color: #fff;
    min-height: 330px;
    margin-bottom: 20px;
}

.ls-area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Title */
.ls-area-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
}

.ls-area-title i {
    margin-right: 8px;
}

/* List */
.ls-area-list {
    list-style: none;
    padding-left: 0;
}

.ls-area-list li {
    font-size: 15px;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

/* White bullet */
.ls-area-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Bottom Text */
.ls-area-bottom {
    margin-top: 35px;
    text-align: center;
    font-size: 15px;
    color: #555;
    
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/*----------------------*/

/* Section */
.ls-process-section {
    padding: 60px 0;
}

/* Image */
.ls-process-img img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* Heading */
.ls-process-heading h2 {
    color: #1F7D8B;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Timeline */
.ls-timeline {
    position: relative;
    padding-left: 30px;
}

/* Vertical line */
.ls-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #1F7D8B;
}

/* Step */
.ls-step {
    position: relative;
    margin-bottom: 22px;
}

/* Circle */
.ls-step::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #1F7D8B;
    border-radius: 50%;
}

/* Title */
.ls-step-title {
    font-weight: 600;
    color: #1F7D8B;
    margin-bottom: 5px;
}

/* Text */
.ls-step-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/*---------------------------------*/
/* Section */
.ta-choose-wrap {
    padding: 60px 0;
}

/* Header */
.ta-choose-head {
    text-align: center;
    margin-bottom: 40px;
}

.ta-choose-head h2 {
    color: #1F7D8B;
    font-weight: 700;
}

.ta-choose-head p {
    color: #555;
    max-width: 800px;
    margin: 10px auto 0;
    font-size: 15px;
}

/* Stats */
.ta-stat-card {
    background: #1F7D8B;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    margin-bottom: 20px;
}

.ta-stat-card:hover {
    transform: translateY(-5px);
}

.ta-stat-num {
    font-size: 26px;
    font-weight: 700;
}

.ta-stat-label {
    font-size: 13px;
}

/* Features */
.ta-feature-card {
    border: 1px solid #e9f1f2;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    transition: 0.3s;
    margin-top: 20px;
}

.ta-feature-card:hover {
    border-color: #1F7D8B;
    background: #f8fcfd;
}

.ta-feature-icon {
    font-size: 18px;
    color: #1F7D8B;
    margin-bottom: 8px;
}

.ta-feature-title {
    font-weight: 600;
    color: #1F7D8B;
    margin-bottom: 5px;
}

.ta-feature-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.ls-area-list1{ list-style: disc; padding-left: 20px; margin-bottom: 20px;}
.ls-area-list1 li {
    font-size: 15px;
    margin-bottom: 0px;
    padding-left: 2px;
    position: relative;
    color: #222;
}

/*--------------Noida location page */

.min-h{ min-height: 195px; background: #f8fcfd; border: solid 1px #1F7D8B;}

.na-process-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #eef7f9, #f8fcfd);
        }

        .na-process-title {
            color: #1F7D8B;
            font-weight: 700;
        }

        /* Timeline */
        .na-timeline {
            position: relative;
            margin-top: 50px;
        }

        .na-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            width: 3px;
            height: 100%;
            background: #1F7D8B;
            transform: translateX(-50%);
        }

        .na-timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 100%;
        }

        .na-timeline-content {
            width: 45%;
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }

        .na-left {
            float: left;
            text-align: right;
        }

        .na-right {
            float: right;
        }

        .na-timeline-icon {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: #1F7D8B;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 2;
        }

        .na-step-title {
            color: #1F7D8B;
            font-weight: 600;
        }

        .na-timeline-item::after {
            content: "";
            display: block;
            clear: both;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .na-timeline::before {
                left: 20px;
            }

            .na-timeline-content {
                width: 80%;
                margin-left: 50px;
                text-align: left !important;
            }

            .na-left, .na-right {
                float: none;
            }

            .na-timeline-icon {
                left: -6px;
                transform: none;
            }
        }


/*-------------------*/
.na-area-box {
            background: #fff;
            border-radius: 12px;
           
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .na-area-list {
            list-style: none;
            padding-left: 0;
            margin-top: 20px;
        }

        .na-area-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(31,125,139,0.08);
            border-left: 4px solid #1F7D8B;
            border-radius: 6px;
            transition: 0.3s;
        }

        .na-area-list li:hover {
            background: #1F7D8B;
            color: #fff;
        }

        .na-bottom-text {
            margin-top: 30px;
            padding: 25px;
            background: #1F7D8B;
            color: #fff;
            border-radius: 10px;
        }
