.content_info{

display:block;

}


.content_info .content_info_img{
  display:block;
  float:right;
  max-width:450px;
  margin-left:40px;
  margin-bottom:40px;
  border-radius:10px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
}



.content_info strong b {

color:#000000;

}


.content_info h2{

  font-size:20px;
  font-weight:800;
  margin-top:30px;
  margin-bottom:20px;
  color:#000000;
  word-break: break-word;

}


.content_info h3{

font-size:18px;
font-weight:700;
margin-top:30px;
margin-bottom:20px;
text-transform:none;
color:#000000;

}



.content_info h4{

font-size:16px;
font-weight:700;
margin-top:30px;
margin-bottom:20px;
text-transform:none;
color:#000000;

}

.content_info ul{
margin-bottom:20px;
}



.content_info ul li, ol{
  line-height: 130%;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size:16px;
}
.content_info a {
  color:#9D0300;
}


@media (max-width: 1050px) {
  .content_info .content_info_img {
    float: none;
    margin-left: 0px;
  }
}
@media (max-width: 600px) {
  .content_info ul li, ol {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .content_info .content_info_img {
    max-width: 100%;
  }

}




/* ========================================================================== */








 :root {
            --primary-color: #4a5568;
            --secondary-color: #1D1D1D;
            --accent-color: #E5BC15;
            --bg-light: #f7fafc;
            --bg-white: #ffffff;
            --text-dark: #2d3748;
            --text-light: #1D1D1D;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
            --back-block: #f3f3f3;
             --text-light2: #4a5568;
        }








 /* Main Content Sections */
        .section {
           margin-bottom:40px;
        }

        .section-alt {

        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 26px;
            font-weight: 800;
            color: #000000;
            margin-bottom: 20px;
            margin-top:60px;
            position: relative;
            display: inline-block;
        }

 -

        .section-title p {
            color: var(--secondary-color);
            font-size: 16px;
            max-width: 700px;
            margin: 20px auto 0;
        }

        /* About Grid */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 60px;
        }

        .about-content h3 {
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .about-content p {
            color: var(--text-light2);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;

        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

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

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
           /* background-color: var(--back-block);*/
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            overflow:clip;
            position: relative;
                background-image: url(/images/consultation_block_bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-color: #070914;
    z-index:1;


        }


.stat-item_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    pointer-events: none;
    z-index: -1;
    /* background-color: rgba(7, 9, 20, 80%); */
    background-color: rgba(255, 255, 255, 95%);

    box-sizing: border-box;

    backdrop-filter: url(#displacementFilter) blur(3px);
}


        .stat-item:hover {
              /* transform: translateY(-5px);*/

           border-color: var(--accent-color);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-light2);
            font-size: 1rem;
            font-weight: 500;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .value-card {
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: 15px;

            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);


            overflow:clip;
            position: relative;
                background-image: url(/images/consultation_block_bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-color: #070914;
    z-index:1;

        }

        .value-card:hover {

            border-color: var(--accent-color);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
        }

        .value-card h3 {

       font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
            margin-bottom: 15px;

        }

        .value-card p {
            color: var(--text-light2);
            font-size: 16px;
        }

        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 50px;


        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 60%;
            width: 80%;
            height: 2px;
            background-color: var(--border-color);
            z-index: 1;
        }

        .process-step:last-child::before {
            display: none;
        }

        .step-number {
            width: 80px;
            height: 80px;

            border: 3px solid var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            background-color:#ffffff;
        }

        .process-step:hover .step-number {
            background: var(--accent-color);
            color: var(--bg-white);
        }



        .step-number-4 {
        border: 3px solid #AC2E00;
        background: #AC2E00;
        color:#ffffff;
        }

.process-step:hover .step-number-4 {
        border: 3px solid #AC2E00;
        background: #AC2E00;
        color:#ffffff;
        }



        .step-title {



            margin-bottom: 10px;


            font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);

            margin-bottom: 15px;

        }

        .step-desc {
            font-size: 0.9rem;
            color: var(--text-light2);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-member {
            background-color: var(--bg-white);
            border-radius: 15px;
            overflow: hidden;

            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);

        }

        .member-photo {
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--secondary-color);
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-info {
            padding: 25px;
            text-align: center;
        }

        .member-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .member-position {
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .member-desc {
            color: var(--secondary-color);
            font-size: 0.85rem;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;

        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 30px 20px 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: var(--bg-white);
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Certificates Section */
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .certificate-item {
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: 15px;
            text-align: center;

            border: 1px solid var(--border-color);
            transition: all 0.3s ease;



            overflow:clip;
            position: relative;
                background-image: url(/images/consultation_block_bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-color: #070914;
    z-index:1;
        }

        .certificate-item:hover {
            border-color: var(--accent-color);
            transform: translateY(-3px);
        }


        .stat-item_bg_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    pointer-events: none;
    z-index: -1;
    /* background-color: rgba(7, 9, 20, 80%); */
    background-color: rgba(253, 230, 138, 90%);

    box-sizing: border-box;

    backdrop-filter: url(#displacementFilter) blur(3px);
}



        .cert-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .cert-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .cert-desc {
            font-size: 0.85rem;
            color: var(--text-light2);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 80px 40px;
            text-align: center;
            border-radius: 20px;
            margin: 40px;
            display:block;
            margin:0;
            margin-top:80px;


             overflow:clip;
            position: relative;
                background-image: url(/images/consultation_block_bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-color: #070914;
    z-index:1;
        }



        .cta-section h2 {
            font-size: 2rem;
            color: #000000;
            margin-bottom: 20px;
            font-weight:800;
        }

        .cta-section p {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #AC2E00;
            color: var(--bg-white);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-decoration:none;
        }





        .btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            background-color: #AC2E00;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--text-dark);
            color: var(--text-dark);
            margin-left: 15px;
        }

        .btn-outline:hover {
            background-color: var(--text-dark);
            color: var(--bg-white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

            .process-step:nth-child(3)::before,
            .process-step:nth-child(4)::before {
                display: none;
            }

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

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

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

        @media (max-width: 768px) {
            .page-header {
                padding: 50px 20px;
            }

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

            .section {
                padding: 50px 20px;
            }

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

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

            .values-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .process-step::before {
                display: none;
            }

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

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .certificates-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                margin: 20px;
                padding: 50px 20px;
            }

            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }







/* Main Container */
        .p_services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
        }

        /* Header Section */
        .p_services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .p_services-title-main {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .p_services-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
        }

        /* Grid Layout */
        .p_services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        /* Service Card */
        .p_services-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration:none;
        }

        .p_services-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Image Wrapper */
        .p_services-image-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .p_services-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        /* Content Area */
        .p_services-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .p_services-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 15px;
        }

        .p_services-price-block {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #eee;

        }

        .p_services-price-label {
            font-size: 0.9rem;
            color: #7f8c8d;
        }

        .p_services-price-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #27ae60;
            background-color: #eafaf1;
            padding: 5px 10px;
            border-radius: 6px;
        }


         .p_services-price-value2 {
         display:inline-block;
            font-size: 1.6rem;
            font-weight: 700;
            color: #27ae60;
            background-color: #eafaf1;
            padding: 10px 15px;
            border-radius: 6px;

        }


          .p_services-price-value3 {
          display:inline-block;
            font-size: 1.6rem;
            font-weight: 700;
            color: #AC2E00;
            padding: 20px 30px;
            border-radius: 15px;
            border:1px solid #AC2E00;
            margin-top:10px;
            margin-bottom:10px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .p_services-title-main {
                font-size: 2rem;
            }
            .p_services-grid {
                grid-template-columns: 1fr;
            }
        }





/* Container Utility */
        .p_cont_services_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
        }

        /* Header */
        .p_cont_services_header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .p_cont_services_nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .p_cont_services_logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .p_cont_services_logo span {
            color: #e67e22;
        }

        .p_cont_services_phone {
            font-weight: 600;
            color: #2c3e50;
            text-decoration: none;
            background: #f0f2f5;
            padding: 8px 16px;
            border-radius: 20px;
            transition: background 0.3s;
        }

        .p_cont_services_phone:hover {
            background: #e0e2e5;
        }


        .short_size {max-width:300px;margin:auto;}

        /* Hero Section */
        .p_cont_services_hero {

            background-size: cover;
            background-position: center;
            color: #ffffff;
            padding: 160px 50px 100px 50px;
            text-align: center;
            border-radius: 15px;

        }

        .p_cont_services_hero_title {
            font-size: 2.6rem;
            margin-bottom: 20px;
            line-height: 1.2;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            color: #ffffff;
        }

        .p_cont_services_hero_subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            color:#dddddd;
        }

        .p_cont_services_btn {
            display: inline-block;
            background-color: #e67e22;
            color: white;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.2s, background-color 0.2s;
            border: none;
            cursor: pointer;
        }

        .p_cont_services_btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }

        /* Intro Section */
        .p_cont_services_intro {
            padding: 80px 0;
            background-color: white;
        }

        .p_cont_services_intro_grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .p_cont_services_intro_text h2 {
            font-size: 1.6rem;
            color: #000000;
            margin-bottom: 20px;
        }

        .p_cont_services_intro_text p {
            margin-bottom: 20px;
            color: #555;
        }

        .p_cont_services_intro_img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }


         .p_cont_services_intro_img2 {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }



        /* Benefits Section */
        .p_cont_services_benefits {

        }

        .p_cont_services_section_title {
            text-align: center;
            font-size: 1.6rem;
            color: #000000;
            margin-bottom: 50px;
            position: relative;
        }

        .p_cont_services_section_title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: #E5BC15;
            margin: 15px auto 0;
            border-radius: 2px;
        }




        .p_cont_services_section_title2 {
            text-align: center;
            font-size: 1.6rem;
            color: #000000;
            margin-bottom: 50px;
            position: relative;
        }

        .p_cont_services_section_title2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: #AC2E00;
            margin: 15px auto 0;
            border-radius: 2px;
        }







        .p_cont_services_benefits_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .p_cont_services_benefit_card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-left: 4px solid #E5BC15;
        }


            .p_cont_services_benefit_card2 {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-left: 4px solid #AC2E00;
        }




        .p_cont_services_benefit_card:hover {
            transform: translateY(-5px);
        }

        .p_cont_services_benefit_title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #000000;
        }

        .p_cont_services_benefit_desc {
            color: #666;
            font-size: 0.95rem;
        }

        /* Scope Section */
        .p_cont_services_scope {
            padding: 80px 0;
            background-color: white;
        }

        .p_cont_services_scope_list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            list-style: none;
        }

        .p_cont_services_scope_item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 5px;
        }

        .p_cont_services_scope_icon {
            color: #AC2E00;
            margin-right: 15px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Process Section */
        .p_cont_services_process {
            padding: 80px 0;
            background-color: #2c3e50;
            color: white;
        }

        .p_cont_services_process .p_cont_services_section_title {
            color: white;
        }

        .p_cont_services_process_steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            position: relative;
        }

        .p_cont_services_step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .p_cont_services_step_num {
            width: 50px;
            height: 50px;
            background-color: #e67e22;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 4px solid #34495e;
        }

        .p_cont_services_step_title {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .p_cont_services_step_desc {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* CTA Section */
        .p_cont_services_cta {
            padding: 80px 0;
            background: linear-gradient(rgba(230, 126, 34, 0.9), rgba(230, 126, 34, 0.9)),
                        url('https://image.qwenlm.ai/public_source/75e3607b-06c6-47c0-ae09-75ce8a800646/1ec3efccb-0fef-45be-a0ac-f8bf13f561e5.png');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
        }

        .p_cont_services_cta_title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .p_cont_services_cta_text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .p_cont_services_cta_btn {
            background-color: white;
            color: #e67e22;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            text-decoration: none;
            transition: transform 0.2s;
            display: inline-block;
        }

        .p_cont_services_cta_btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Footer */
        .p_cont_services_footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 40px 0;
            text-align: center;
        }

        .p_cont_services_footer_text {
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .p_cont_services_hero_title {
                font-size: 2rem;
            }

            .p_cont_services_intro_grid {
                grid-template-columns: 1fr;
            }

            .p_cont_services_process_steps {
                flex-direction: column;
                gap: 40px;
            }

            .p_cont_services_step::after {
                display: none;
            }
        }











        :root {
            --potrf-color-primary: #AC2E00;
            --potrf-color-secondary: #E5BC15;
            --potrf-color-dark: #1a1a2e;
            --potrf-color-gray: #6b7280;
            --potrf-color-light-gray: #9ca3af;
            --potrf-color-bg: #f5f7fa;
            --potrf-color-white: #ffffff;
        }



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

        .potrf-page-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .potrf-page-header h1 {
            font-size: 48px;
            font-weight: 700;
            color: var(--potrf-color-dark);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .potrf-page-header h1 span {
            color: var(--potrf-color-primary);
        }

        .potrf-page-header p {
            font-size: 18px;
            color: var(--potrf-color-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .potrf-accent-line {
            width: 80px;
            height: 4px;
            background: var(--potrf-color-secondary);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .potrf-filter-section {
            display: flex;
            justify-content: start;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .potrf-filter-btn {
            padding: 12px 24px;
            border: 2px solid #e5e7eb;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--potrf-color-white);
            color: var(--potrf-color-gray);
        }

        .potrf-filter-btn:hover {
            border-color: var(--potrf-color-secondary);
            color: #000000;
            transform: translateY(-2px);
        }

        .potrf-filter-btn.active {
            background: var(--potrf-color-secondary);
            color: var(--potrf-color-dark);
            border-color: var(--potrf-color-secondary);
            box-shadow: 0 4px 16px rgba(229, 188, 21, 0.3);
        }

        .potrf-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .potrf-gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--potrf-color-white);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration:none;
        }

        .potrf-gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(172, 46, 0, 0.15);
        }

        .potrf-gallery-image {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .potrf-gallery-item:hover .potrf-gallery-image {
            transform: scale(1.05);
        }

        .potrf-gallery-overlay {
            padding: 24px;
            background: var(--potrf-color-white);
        }

        .potrf-gallery-title {
                font-size: 1.1rem;
    font-weight: 600;
            color: var(--potrf-color-dark);
            margin-bottom: 16px;
            line-height: 1.3;
            text-align:center;
            text-transform: uppercase;

        }

        .potrf-project-meta {
   display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
     margin-bottom: 20px;
            padding-bottom: 20px;
            margin-top:40px;
            border-bottom: 1px solid #e5e7eb;
        }



 .potrf-project-meta2 {
    align-items: start;
    justify-content: start;
    text-align: center;
    border-bottom: none;
padding-bottom: 0px;
    }


        .potrf-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align:center;


        }


         .potrf-meta-item2 {
            align-items: start;
            text-align:start;
        }

        .potrf-meta-content {
            display: flex;
            flex-direction: column;
        }

        .potrf-meta-label {
            font-size: 12px;
            color: var(--potrf-color-light-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .potrf-meta-value {
            font-size: 16px;
            font-weight: 500;
            color: var(--potrf-color-dark);
        }

            .potrf-meta-value2 {

            font-weight: 600;

        }

        .potrf-meta-value span {
            color: var(--potrf-color-primary);
        }

        .potrf-project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
             justify-content: center;

        }



          .potrf-project-tags2 {

             justify-content: start;

        }



                    .potrf-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #d1d5db;
    background: #f3f4f6;
    color: #6b7280;
    }

    .potrf-tag-2 {
     border: 1px solid rgba(229, 188, 21, 0.3);
            background: rgba(229, 188, 21, 0.08);
            }

        /* Responsive */
        @media (max-width: 1024px) {
            .potrf-gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .potrf-page-header h1 {
                font-size: 36px;
            }

            .potrf-page-header p {
                font-size: 16px;
            }

            .potrf-gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .potrf-gallery-image {
                height: 280px;
            }

            .potrf-project-meta {
                flex-direction: column;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {


            .potrf-page-header h1 {
                font-size: 28px;
            }

            .potrf-filter-btn {
                padding: 10px 18px;
                font-size: 13px;
            }
        }

        /* Animation */
        @keyframes potrf-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .potrf-gallery-item {
            animation: potrf-fadeInUp 0.6s ease forwards;
        }

        .potrf-gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .potrf-gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .potrf-gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .potrf-gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .potrf-gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .potrf-gallery-item:nth-child(6) { animation-delay: 0.6s; }














.u_price-container {
  max-width: 1400px;
  margin: 0 auto;
  font-weight:500;
}

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

.u_price-section-title {
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.u_price-table {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.u_price-header {
  display: flex;
  color: #000000;
  box-shadow: none;
  font-weight: 500;
}

.u_price-body {
  display: flex;
  flex-direction: column;
}

.u_price-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.u_price-row:nth-child(even) {
  background-color: #f8f9fa;
}

.u_price-row:hover {
  background-color: #e3f2fd;
  transition: background-color 0.2s;
}

.u_price-category-row {
  background: #e5bc15;
  color: #000000;
  border:#e5bc15;

}

.u_price-cell {
  padding: 12px;
  display: flex;
  align-items: center;
}

.u_price-header-cell {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 15px 12px;
  font-weight: 500;

}





.u_price-cell:nth-child(1) {
  width: 60px;
  font-weight: 600;
  color: var --text-light2;
  justify-content: center;
  color:#000000;
}

.u_price-cell:nth-child(2) {
  flex: 1;
  font-weight:500;

}

.u_price-cell:nth-child(3) {
  width: 80px;

  font-size: 14px;
  white-space: nowrap;
  font-weight:500;
}


.u_price-header-cell:nth-child(3) {
  font-size: 12px;
  color:#000000;
}


.u_price-cell:nth-child(4) {
  width: 120px;
  font-weight: 700;
  color: #000000;
  justify-content: flex-end;
  white-space: nowrap;
}

.u_price-price-cell {
  font-weight: 700;
  color: #4caf50;
  justify-content: flex-end;
  white-space: nowrap;
}

.u_price-category-row .u_price-cell {
  padding: 10px 12px;
  font-size: 14px;
}

.u_price-colspan-4 {
  width: 100% !important;
}





.u_price-cell strong{
font-weight:700;
}

@media (max-width: 768px) {
  .u_price-table {
    font-size: 12px;
  }

  .u_price-cell {
    padding: 8px;
  }

  .u_price-cell:nth-child(2) {
    font-size: 11px;
  }
}

@media (max-width: 800px) {
  .cta-section {
    margin: 20px 0px;
    padding: 25px 12px;
  }
  .cta-section h2 {
    font-size: 28px;
  }
  .btn {
    font-size: 14px;
  }
}
