/*==================================================  ROOT VARIABLES ==================================================*/

:root{

    /* Colors */
    --primary:#ff014f;
    --secondary:#6a67ce;

    --bg:#ecf0f3;
    --section-bg:#eef2f7;

    --white:#ffffff;
    --black:#000000;

    --heading:#1d2027;
    --heading2:#1f2235;

    --text:#5f6b7b;
    --text-light:#4d5566;

    /* Shadow */

    --shadow:
        10px 10px 22px rgba(174,174,192,.35),
       -10px -10px 22px rgba(255,255,255,.95);

    --shadow-lg:
        15px 15px 35px rgba(0,0,0,.08),
       -15px -15px 35px rgba(255,255,255,.9);

    --shadow-hover:
        0 20px 30px rgba(255,1,79,.35);

    /* Gradient */

    --card-gradient:
    linear-gradient(
        135deg,
        #6a67ce 0%,
        #b764b0 55%,
        #ff5b6f 100%
    );
    --light-gradient: linear-gradient(120deg, #f2eded 10%, #ffffff 100%);

    /* Transition */

    --transition:.35s;

}
/*================================================== RESET ==================================================*/



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--heading2);

}

img{
    max-width:100%;
    display:block;
}
a{
    text-decoration:none;
    transition:var(--transition);
}

ul,
ol{
    list-style:none;
    margin:0;
    padding:0;
}



/*================================================== COMMON CLASSES ==================================================*/

.bip_badge {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.bip_heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 20px;
}

.bip_tab_btn{
    background: var(--light-gradient);
    box-shadow: 0px 0px 10px rgb(196, 184, 184);
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s linear;
}
.bip_tab_btn.active {
    background: var(--card-gradient);
    color: var(--white);
    transition: 0.4s;

}
.bip_tab_btn:hover {
    background: var(--card-gradient);
    color: var(--white);
    transition: 0.4s;
}
.bip_sub_heading{
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 20px;
    margin-top: 10px;
}

/*================================================== HEADER ==================================================*/
.admin-bar #header{
    top: 32px;
}

#header{
    background: #E6E7E1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
    transition: transform .4s ease, background .3s ease, box-shadow .3s ease, padding .3s ease;
}

#header.sticky{
    background: #E6E7E1;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    padding: 12px 0;
}

#header.hide{
    transform: translateY(-100%);
}

#header .row{
    align-items: center;
}

.logo a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
.logo img{
    width: 50px;
    height: auto;
    border-radius: 50%;
}
#nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 38px;
}

#nav li{
    list-style: none;
}

#nav li a{
    color: var(--heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

#nav li a:hover,
#nav .current-menu-item a,
#nav .current_page_item a{
    color: rgb(255, 19, 255);
}
.menu_toggle {
    display: none;
}
/*================================================== HERO SECTION  ==================================================*/

.hero{
    margin-top: 70px;
    padding: 60px 0;
    background: var(--section-bg);
    overflow: hidden;

}



.hero_headings{
    font-weight: 800;
}

.hero_headings span{
    color: var(--primary);
}

.sub_hero_heading{
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}
.sub_hero_heading span {
    color: var(--heading);
}

.hero_content{
    max-width: 620px;
    font-size: 16px;
    margin-bottom: 80px;
}

/* Animation For Heading*/
.text::after{
    content:" |";
    animation:blink 1s infinite;
}

@keyframes blink{

    50%{
        opacity:0;
    }
}

/* Hero Meta*/

.hero_meta{
    display:flex;
    gap:100px;
}

.hero_meta h3{

    margin-bottom:25px;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--heading2);

}



/* Hero Icon Style*/

.social_area,
.skill_area{

    display:flex;
    flex-direction: column;
    gap:18px;

}
.social_icons,
.skill_icons{
    display: flex;
    gap: 20px;
}

.social_area a,
.skill_area a{

    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background: var(--light-gradient);
    color: var(--text);
    font-size:28px;
    box-shadow:var(--shadow);

}

.social_area a:hover,
.skill_area a:hover{

    background: linear-gradient(135deg, #ba9393 10%, #ff1111 100%);
    color:var(--white);

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}



/*Hero Image*/


#hero img{
    width:100%;
    padding:30px;
    border-radius:20px;
    background:var(--white);
    box-shadow:var(--shadow-lg);
}

/*================================================== ABOUT ME =================================================*/

.about_me p {
    font-size: 16px;
    padding: 20px 20px 20px 0px;
    line-height: 30px;

}
.about_me span {
    font-weight: 600;
    color: var(--heading);
}
.sub_cat {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    max-width: 500px;
}
.sub_cat h4 {
    box-shadow: 0px 0px 10px rgb(208, 208, 208);
    background: #f7f5f5;
    padding: 15px 25px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;

}
.sub_cat i {
    color: #5f8275;
    margin-right: 10px;
    font-size: 10px;
}
.about_me_persolan_heading{
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 50px 100px;
}

.about_me_persolan_heading h4{
    box-shadow: 0px 0px 10px rgb(208, 208, 208);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 15px 20px;
    background: #f7f5f5;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #c54242;
}


.about_me_persolan_heading h4 span{
    font-size: 16px;
    font-weight: 400;
    color: #666;
    /* text-align: right; */
}

.tab_contentss {
    display: none;
}
.tab_contentss.active{
    display: block;
}




.skill_heading{
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #3f4652;
    line-height: 1.1;
}

.about_content{
    width: 100%;
}

.skill_progress{
    position: relative;
    margin-bottom: 40px;
}

.progress{
    height: 14px;
    background: #d8dde3;
    border-radius: 50px;
    overflow: hidden;
}

.progress_bar{
    width: 0;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg,#ffe6ee 0%, #ff7aa8 35%, #ff0059 100%);
    transition: width 1.2s ease;
}

.progress_label{
    position: absolute;
    top: 0px;
    left: 0;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500;
    color: #555;
    letter-spacing: 1px;
    transition: left 1.2s ease;
}


/*================================================= SERVICE SECTION =================================================*/

.service{
    padding: 50px 0;
    background:var(--bg);
}

.service_card{
    width: 100%;
    height: 100%;
    position:relative;
    overflow:hidden;
    padding: 30px 30px;
    border-radius:12px;
    background:var(--bg);
    box-shadow:var(--shadow);
    transition:.4s;
}

.service_card:hover{
    background:var(--card-gradient);
}


.card_icon,
.card_sub_heading,
.card_content{
    position:relative;
    z-index:2;
    transition:.5s;
}

.service_card:hover .card_icon,
.service_card:hover .card_sub_heading,
.service_card:hover .card_content{

    transform:translateY(-18px);

}

.card_icon{
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    color:var(--primary);
}

.service_card:hover .card_icon{
    color:var(--white);
}




.card_sub_heading,
.portfulio_card_heading{
    font-weight:700;
    color:var(--heading2);
    margin-bottom: 10px;
}
.service_card:hover .card_sub_heading{
    color:var(--white);
}

.card_content{

    font-size:16px;

}

.service_card:hover .card_content{

    color:rgba(255,255,255,.95);

}

.arrow_icon{
    position:absolute;
    left:35px;
    bottom: 10px;
    z-index:5;
    font-size:32px;
    color:var(--white);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:var(--transition);
}

.service_card:hover .arrow_icon{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
} 



/*==================================================  PORTFULIO STYLE =================================================*/

/* Badge & Heading*/
.portfulio_badge,
.portfulio_heading {
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

/* Portfulio Btn*/
.tabs_btn,
.about_tab_btns {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.tab_btn.active,
.about_tab_btn.active {
    background: var(--card-gradient);
    color: var(--white);
    transition: 1s;
}


.portfulio_card {
    background: var(--light-gradient);
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}
.image_card {
    border: 1px solid;
    border-radius: 10px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}
.image_card img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}
.portfulio_card img:hover {
    transform: scale(1.05);
}
.portfulio_card .card_meta_info {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}
.portfulio_card .card_meta_info .tags {
    font-size: 14px;
    text-transform: uppercase;
}



/* See More Btn*/
.more_btn {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.4s;
    border: none;
    font-size: 16px;
    font-weight: bold;
}
.more_btn:hover{
    background: var(--primary);
}
.portfulio_card_heading {
    font-size: 24px;
    margin-bottom: 10px;
}
.project_view_btn {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--secondary);
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    transition: all 0.4s;
}
.project_view_btn:hover {
    background: var(--primary);
}


/*================================================== Contact =================================================*/
.contact {
    padding: 50px 0;
}
.contact_top_area {
    text-align: center;
    margin-bottom: 40px;
}
.contact_card {
    background: var(--white);
    border-radius: 10px;
    border: none;
    padding: 20px 30px;
}
.contact_image{
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact_image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact_image:hover img{
    transform: scale(1.08);
}
.contact_sub_heading {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}
.contact_sub_badge {
    font-size: 15px;
    font-weight: 600;
}
.contact_content {
    margin-top: 30px;
    font-size: 16px;
}
.contact_phone_number,
.contact_email {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact_phone_number span,
.contact_email span{
    font-weight: 500;
}

.contact_form {
    background: var(--white);
    border: none;
    border-radius: 10px;
    padding: 40px;
}
.contact_form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.contact_form input {
    font-size: 14px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 30px;
    transition: 0.3s;
}
.contact_form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 30px;
    transition: 0.3s;
}
.contact_form button {
    background: var(--secondary);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0px;
    width: 100%;
    border: none;
    border-radius: 10px;
    transition: 0.5s;
}
.contact_form button:hover{
    background: var(--primary);
}
.contact_form input:focus,
.contact_form textarea:focus{
    outline: none;
    border: 1px solid #868686;

}

/*================================================== FOOTER =================================================*/

#footer {
    background: #E6E7E1;
    padding: 30px 0;

}
.footer_area_style {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_img {
    padding: 0;
}
.footer_icon_area {
    text-align: center;
}

.footer_icon_area a{
    text-decoration: none;
    background: var(--white);
    color: var(--heading);
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
    margin-right: 4px;
}
.footer_icon_area a:hover {
    background: #6a67ce;
    color: white;
}

.footer_text {
    text-align: right;
}

/*================================================== Blog Post Page Style =================================================*/

#blog {
    background: #ECF0F3;
}
.blog_posts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.blog_posts img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.child_blog{
    background: white;
    padding: 15px;
    border-radius: 10px;
}
.child_blog h2 a {
    color: var(--text);
}
.child_blog h2 {
    font-size: 20px;
    font-weight: 600;
}
.child_blog p {
    font-size: 15px;
    font-weight: 400;
}
.excerpt_btn {
    background: var(--secondary);
    color: #d8dde3;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 6px;
    transition: 0.4s;
}
.excerpt_btn:hover {
    background: #3f4652;
}

/*================================================== Single Post =================================================*/
.single-post {
    margin-top: 16px;
    padding: 50px 0;
}
.child_single_post {
    background: white;
    border-radius: 10px;
    padding: 20px;
}
.child_single_post img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}
.child_single_post h2{
    color: var(--text);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}
.child_single_post p {
    font-size: 14px;
    font-weight: 0;
    margin-bottom: 10px;
}
.child_single_post ol {
    margin-bottom: 20px;
    list-style-type: decimal;
    list-style-position: inside;
}
.child_single_post ol li{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.child_single_post a {
    color: #289109;
    font-weight: 600;
}

/*================================================== Sideber =================================================*/
.sidebar_1 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.sidebar_1 label {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}
.sidebar_1 .wp-block-search__button {
    background: #5f8275;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}
.sidebar_1 .wp-block-search__button:hover {
    background: #425850;
}
.sidebar_1 input {
    padding: 10px;
    border: 1px solid #bbb9b9;
    border-radius: 6px;
}
.sidebar_1 input:focus {
    outline: none;
    border: 1px solid #7a6b6b;
}
.sidebar_1 h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}
.sidebar_1 ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid #7c6969;
}
.sidebar_1 ul li a {
    font-size: 16px;
    font-weight: 500;
    color: purple;
}
.sidebar_1 ul li a:hover {
    color: blue;
}
/*================================================== Search =================================================*/
#search {
    margin-top: 27px;
    padding: 50px 0;
}
.search_area {
    background: #E6E7E1;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0px 0px 10px rgb(172, 164, 164);
}
.search_area h2 {
    font-size: 30px;
    font-weight: 600;
}

.no_post_found h2{
    font-size: 25px;
    font-weight: 600;
}
/*================================================== ARCHIVE =================================================*/
#archive {
    margin-top: 70px;
    padding-top: 10px;
    padding-bottom: 50px;
}



/*================================================== Conatct Page Design  =================================================*/


.page_heading_section {
    margin-top: 70px;
    padding: 20px 0;
}

.page_heading_child {
    position: relative;
    padding: 80px 0;
    background: white;
    border-radius: 10px;
    z-index: 1;
}

.page_heading_child::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255, 213, 213); /* Overlay color */
    opacity: 0.7;
    z-index: -1;
    border-radius: 10px;
}
.Breadcrumb a {
    text-decoration: none;
    color: blue;
    font-size: 16px;
}
.Breadcrumb .Breadcrumb_icon {
    color: black;
}
.Breadcrumb span {
    color: black;
    font-size: 16px;
}
.page_heading_child h2{
    font-size: 40px;
    font-weight: 600;
}
/*================================================== Project Page Style =================================================*/


.bip_tab_content {
    display: none;
}
.bip_tab_content.active {
    display: block;
}

.bip_tabs_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
}
/*================================================== All Project Page =================================================*/
.project_page_section {
    padding-bottom: 50px;
}

.bip_portfulio_card {
    padding: 10px 20px;
    border-radius: 10px;
    background: white;
}
.bip_tabs_content .bip_portfulio_card .card_meta_info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.bip_tabs_content .bip_portfulio_card .card_meta_info span,
.bip_tabs_content .bip_portfulio_card .card_meta_info a {
    font-size: 12px;
}
.bip_tabs_content .bip_portfulio_card .card_content h2 {
    font-size: 20px;
} 

.bip_project_btn_area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bip_project_btn_area button {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.4s;   
}
.bip_project_btn_area .bip_project_view_details_btn {
    background: blueviolet;
    color: white;
    border: 1px solid blueviolet;

}
.bip_project_btn_area .bip_project_view_details_btn:hover {
    background: rgb(8, 8, 94);
}
.bip_project_btn_area .bip_project_view_btn {
    background: white;
    color: #3f4652;
    border: 1px solid #3f4652;

}
.bip_project_btn_area .bip_project_view_btn:hover {
    background: rgb(66, 11, 118);
    color: white;
}
.bip_tabs_content {
    margin-top: 20px;
}
.tab_content {
    display: none;
}
.tab_content.active {
    display: block;
}
.hero_img .hero_img_child {
    background: white;
    border-radius: 10px;
    padding: 20px;
}
.hero_img1 {
    display: none;
}

/*================================================== RESPONSIVE =================================================*/





/*========================== Tablet =========================*/

@media (max-width:991px){
    .logo img {
        width: 40px;
    }
    .logo a {
        font-size: 16px;
    }
}




@media only screen and (min-width: 768px) and (max-width: 991px) {


    /**************** Hero Area **************/

    
    .logo img {
        width: 40px;
    }
    .logo a {
        font-size: 16px;
    }
    .bip_badge {
        font-size: 12px;
    }

    .bip_heading {
        font-size: 30px;
    }

    .bip_sub_heading{
        font-size: 18px;
    }
    .social_area a,
    .skill_area a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    } 

    /**************** About Area **************/

    .about_me_persolan_heading {
        padding: 50px 50px 0 0;
    }
    .skils_colum {
        padding-bottom: 50px;
    }

    /**************** contact Area **************/

    .contact_sub_heading {
        font-size: 18px;
    }
    .contact_sub_badge {
        font-size: 14px;
    }
    .contact_content {
        font-size: 12px;
    }
    .contact_phone_number, .contact_email {
        font-size: 12px;
    }

    .contact_form label {
        font-size: 12px;
    }
    .contact_form input {
        font-size: 10px;
    }
    .contact_form textarea {
        font-size: 10px;
    }
    .contact_form button {
        padding: 6px 16px;
        font-size: 10px;
    }
    .bip_tabs_content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .bip_project_btn_area button {
        font-size: 8px;
        padding: 6px 15px;
        border-radius: 6px;
    }
    .child_single_post img {
        width: 100%;
        height: auto;
    }
    /**************Footer Area******************/

    .footer_icon_area {
        text-align: right;
    }
    .footer_text {
        margin-top: 40px;
        text-align: center;
        font-size: 14px;
    }
}


/*========================== Mobile =========================*/

@media only screen and (min-width: 200px) and (max-width: 767px) {

    /**************** Hero Area **************/

    .logo img {
        width: 30px;
    }
    .logo a {
        font-size: 12px;
    }
    .bip_badge {
        font-size: 8px;
    }

    .bip_heading {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .bip_sub_heading{
        font-size: 14px;
    }
    .hero_content {
        font-size: 8px;
    }
    .hero_meta h3 {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .hero_img {
        display: none;
    }
    .hero_img1 {
        display: block;
        margin-bottom: 20px;
    }
    .hero_img1 .hero_img_child {
        width: 60%;
        background: white;
        border-radius: 10px;
        padding: 20px;
        display: block;
        margin: 0 auto;
    }
    .hero {
        padding: 20px 0;
    }
    .hero_area {
        text-align: center;
    }
    /**************** About Area **************/

    .social_area a,
    .skill_area a {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 4px;
    } 
    .about_me_persolan_heading {
        margin-top: 20px;
        padding: 20px;
    }
    .skils_colum {
        padding-bottom: 50px;
    }

    .bip_tab_btn {
        padding: 5px 14px;
        font-size: 8px;
        border-radius: 4px;
    }
    .about_me {
        text-align: center;
    }
    .about_me h2 {
        line-height: 25px;
        padding: 0 20px;
    }
    .about_me p {
        padding: 0;
        font-size: 8px;
        line-height: 20px;
        padding: 0 10px;
        text-align: left;
    }
    .sub_cat {
        padding: 0 10px;
    }
    .sub_cat h4 {
        font-size: 10px;
        padding: 6px 16px;
    }
    .sub_cat h4 i{
        font-size: 8px;
        margin-right: 6px;
    }
    .about_me_persolan_heading h4 {
        padding: 8px 15px;
        font-size: 10px;
        border-radius: 5px;
    }
    .about_me_persolan_heading h4 span {
        font-size: 10px;
    }
    .mobile_pad_cntrl {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .about {
        margin-top: 50px;
    }


    /**************** Portfulio Area **************/
    .service {
        padding: 0;
    }
    .card_heading,
    .card_badge {
        text-align: center;
        display: block;
    }
    .card_heading {
        margin-bottom: 30px;
    }
    .service_card  {
        display: block;
        margin: 0 auto;
        width: 90%;
        margin-bottom: 30px;
        text-align: center;
        height: auto;
    }
    .card_icon {
        font-size: 20px;
    }
    .card_content {
        font-size: 8px;
    }
    .card_content h2 {
        font-size: 10px;
    }
    .arrow_icon{
        left: 45%;
        font-size: 20px;
    }
   
    .mobile_portfulio_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .portfulio_card {
        padding: 6px 15px;
        margin-bottom: 10px;
    }
    .tab_content {
        padding: 6px;
    }
    .portfulio_card .card_meta_info .tags {
        font-size: 8px;
    }
    .project_view_btn {
        padding: 5px 0;
        font-size: 8px;
    }
    .more_btn {
        padding: 6px 18px;
        font-size: 8px;
    }
    /**************** contact Area **************/

    .contact_sub_heading {
        font-size: 16px;
    }
    .contact_sub_badge {
        font-size: 10px;
    }
    .contact_content {
        font-size: 8px;
    }
    .contact_phone_number, .contact_email {
        font-size: 8px;
    }

    .contact_form label {
        font-size: 8px;
    }
    .contact_form input {
        font-size: 8px;
    }
    .contact_form textarea {
        font-size: 8px;
    }
    .contact_form button {
        padding: 6px 16px;
        font-size: 8px;
    }
    .contact_card {
        padding: 20px;
        margin-bottom: 10px;
    }
    .contact_form {
        width: 100%;
    }
    /**************** Blog page Area **************/

    
    .page_heading_child h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .Breadcrumb a ,
    .Breadcrumb span {
        font-size: 8px;
    }
    .blog_posts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .child_blog h2 {
        font-size: 16px;
    }
    .child_blog p {
        font-size: 8px;
    }
    .excerpt_btn {
        padding: 6px 15px;
        font-size: 8px;
    }
    /**************** Project Page Area **************/

    .bip_tabs_content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .bip_portfulio_card {
        padding: 10px;
    }
    .bip_tabs_content .bip_portfulio_card .card_content h2  {
        font-size: 15px;
    }

    .bip_project_btn_area button {
        font-size: 8px;
        padding: 6px 15px;
        border-radius: 6px;
    }


    .child_single_post img {
        width: 100%;
        height: auto;
    }
    .search_area h2 {
        font-size: 18px;
    }

    .menu_toggle {
        display: block;
        text-align: right;
    }
    .menu_toggle button {
        border: none;
        background: transparent;
    }
    .menu_tablet_btn {
        display: block;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: #3f4652;
        margin-top: 10px;
        
    }

    .menu_tablet_btn.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .menu_tablet_btn ul {
        margin: 0;
        padding: 10px 0;
    }

    .menu_tablet_btn ul li {
        padding: 8px 0;
        margin: 0;
    }
    #nav li a {
        color: white;
    }
    #nav li a:hover {
        color: rgb(137, 8, 223);
    }

    #nav {
        flex-direction: column;
    }

    /**************Footer Area******************/
    .footer_img {
        padding: 10px;
    }

    .footer_icon_area {
        margin-top: 20px;
        text-align: left;
    }
    .footer_icon_area a {
        padding: 6px;
        font-size: 8px;
    }
    .footer_text {
        margin-top: 20px;
        font-size: 8px;
        text-align: left;
    }
    
}




