/*=================================
    Theme Base
==================================*/
:root {
    --primary-color: #48b70b;
    --light-shadow-green: #8eca7d;
    --dark-green: #1f564d;
    --text-color: #ffffff;
    --secendary-color: #8f9193;
    --title-color: #1A1A1A;
    --btn-border: #d4d4d4;
    --content-color: #74787C;
    --bg-color: #f1f1f1;
    --bg2-color: #f6f6f6;
    --bg3-color: #F5F5F6;
    --nav-text-color: #EDEDED;
    --bottom-border-color: #e1e3e5;
    --icon-bg-color: #e9e9e9;
    --border-right-color: #ddd;
    --input-bg-color: #e5e5e5e5;
    --button-two-color: #2c2c2c;
    --footer-color: #252222ed;
    --light-gold: #fbf5e2;

}

/*=================================
    Default CSS
==================================*/
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
    background: var(--bg2-color);
}

h1 {
    font-size: 22px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 48px;
    line-height: 58px;
    margin: 0;
    font-weight: 600;
    margin-bottom: 66px;
}

h3 {
    font-size: 22px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    margin-bottom: 20px;
}

h4 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
    font-weight: 700;
}

h5 {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

h6 {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    font-weight: 700;
}

p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--content-color);
}

.text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--content-color);
    font-family: "Manrope", sans-serif;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--title-color);
    font-family: "Manrope", sans-serif;
    display: inline-block;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

button,
input,
select {
    border: 0;
    outline: 0;
    background: 0;
}

button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

/*=================================
   Preloader Start
==================================*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-color);
    z-index: 99999;
}

.loader-img {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}



.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--text-color);
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*=================================
navbar  Section
==================================*/
.pg-header {
    width: 100%;
    background: var(--text-color);
    padding: 20px 0;
}

.pg-header-row {
    display: flex;
    justify-content: center;  
    align-items: center;
}

.pg-logo img {
    width: 300px;   
    height: auto;
    transition: 0.3s ease;
}



/*=================================
Footer  Section
==================================*/


.copyuright-area {
    padding: 20px 0;
    background: var(--title-color);
    border-top: 1px solid var(--button-two-color);
}

.footer-copyright-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copyright {
    text-align: center;
}

.terms-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-terms-link {
    color: var(--content-color);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease-in-out;
}

.footer-terms-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: var(--content-color);
}

.copyuright-area p,
.copyuright-area p a {
    color: var(--content-color);
    transition: all 0.4s ease-in-out;
    letter-spacing: 0.5px;
    font-size: 14px;
    margin: 0;
}

.copyuright-area p a:hover {
    color: var(--primary-color);
}

.copyuright-area p a {
    font-weight: 800;
}

@media (max-width: 768px) {
    .footer-copyright-wrapper {
        align-items: start;
        text-align: left;
    }

    .terms-section {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px;
    }

}

@media (max-width: 370px) {
.footer-terms-link {
    letter-spacing: 0px;
}
}
/*=================================
Back To Top
==================================*/
/*=================================
Back To Top
==================================*/
#back-top {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 50px;
    bottom: 30px;
    cursor: pointer;
    z-index: 100;
    color: var(--text-color);
    background: var(--primary-color);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#back-top:hover {
    background-color: var(--dark-green);
}

.back-top-icon i,
.hover-icon i {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0; 
}

@media (max-width: 991px) {
    #back-top {
        height: 40px;
        width: 40px;
        right: 20px;
        bottom: 20px;
    }
    .hover-icon {
        display: none;
    }
}

@media (min-width: 992px) {
    .back-top-icon {
        transition: 0.3s;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hover-icon {
        position: absolute;
        bottom: -50px; 
        transition: 0.3s;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .to-top:hover .back-top-icon {
        margin-top: -100px; 
    }

    .to-top:hover .hover-icon {
        bottom: 0;
        left: 0;
        right: 0;
    }
}

/*=================================
Service Page Style
==================================*/

.service-icon img {
    height: 445px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-single {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-single .serive-contet {
    display: flex;
    align-items: center;
    background: var(--text-color);
}

.service-thumb-icon {
    background: var(--primary-color);
    padding: 26px;
}

.serive-contet .service-title h3 {
    padding: 0 26px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.serive-contet .service-title h3 a {
    transition: all 0.4s;
}

.service-single-wrap .text,
.project-service-single-info-area .text {
    margin-bottom: 40px;
}

.service-overly-card {
    background: var(--title-color);
    color: var(--text-color);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    content: '';
    display: flex;
    padding: 60px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.service-single:hover .service-overly-card {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.service-overly-svg {
    padding: 30px 0;
}

.service-overly-card h3 {
    margin-bottom: 40px;
    transition: all 0.4s;
}

.service-overly-card h3:hover a {
    color: var(--primary-color);
}

.service-overly-card h3 a {
    color: var(--text-color);
    font-size: 24px;
    transition: all 0.4s;
}

.overly-icon a {
    color: var(--text-color);
    transform: rotate(-45deg);
    font-size: 24px;
    border: 1px solid var(--button-two-color);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.overly-icon a:hover {
    border: 1px solid var(--text-color);
}

.overly-icon a .icon-1 {
    position: absolute;
    transition: all 0.2s ease-in-out;
    top: 50%;
    left: -50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
}

.overly-icon a:hover .icon-1 {
    left: 50%;
}

.overly-icon a .icon-2 {
    position: absolute;
    transition: all 0.2s ease-in-out;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
}

.overly-icon a:hover .icon-2 {
    left: 120%;
}

/* ============================================================ */


.powergent-index{
    padding: 100px 0 60px;
    background: rgba(225, 225, 225, 0.447);
}
.branch-index {
    border: 1px solid #DDDDDD;
    margin-left: 20px;
    margin-bottom: 30px;
    position: relative;
    background-color: var(--text-color);
    transition: all ease 0.4s;
}

.branch-index .branch-head {
    padding: 42px 25px 0 25px;
}

.branch-index .branch-body {
    padding: 25px 25px 40px 25px;
}


.branch-index .branch-list ul {
    margin: 0;
}

.branch-index .branch-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    transition: all ease 0.4s;
    color: #555;
}

.branch-index .branch-list li:before {
    content: "";
    border: 3px solid var(--primary-color);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 4px;
}

.branch-index .branch-icon {
    width: 105px;
    height: 105px;
    line-height: 105px;
    text-align: center;
    outline: 2px solid var(--primary-color);
    outline-offset: -6px;
    background: var(--text-color);
    border-radius: 50%;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-index .branch-icon img {
    width: 65px;     
    height: auto;
    display: block;
}
.branch-index .branch-title {
    margin-bottom: 17px;
    font-size: 27px;
    font-weight: 800px;
    
}
.branch-index .branch-title a {
    color: var(--dark-green);
}


.branch-index .branch-text {
    color: #555;
    transition: all ease 0.4s;
}

.branch-index .branch-img {
    overflow: hidden;
    margin: 0 20px 0 -20px;
}

.branch-index .branch-img img {
    width: 100%;
    transform: scale(1.01);
    transition: all ease 0.4s;
}

.branch-index .branch-shape-dotted {
    height: 32px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}
.branch-index .branch-img {
        position: relative;

    overflow: hidden;
    margin: 0 20px 0 -20px;
    height: 220px;  

}

.branch-index .branch-img img {
    width: 100%;
    height: 100%;               
    object-fit: cover;        
    object-position: center;  
    transition: all 0.4s ease;
}

.branch-index .branch-img::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(200,200,200,0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.branch-index:hover .branch-img::after {
    animation: imageRipple 0.8s ease-out forwards;
}

@keyframes imageRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.6;
    }
    70% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(5);
        opacity: 0;
    }
}

.branch-action {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.branch-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.branch-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
.branch-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: -1;
    animation: pulseGlow 2s infinite;
    opacity: 0.6;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.branch-index:hover .branch-title,
.branch-index:hover .branch-title a {
    color: var(--light-gold) !important;
}

.slick-center .branch-index,
.branch-index:hover {
    background-color: #0e2e29;
    border-color: transparent;
}

.slick-center .branch-index .branch-shape-dotted,
.branch-index:hover .branch-shape-dotted {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

.slick-center .branch-index .branch-img img,
.branch-index:hover .branch-img img {
    transform: scale(1.1);
}

.slick-center .branch-index .branch-list li,
.slick-center .branch-index .branch-text,
.branch-index:hover .branch-list li,
.branch-index:hover .branch-text {
    color: #C6C6C6;
}

.slick-center .branch-index .branch-title,
.branch-index:hover .branch-title {
    color: var(--text-color);
}

.slick-center .branch-index .branch-icon,
.branch-index:hover .branch-icon {
    background-color: var(--primary-color);
    outline-color: var(--text-color);
}

.slick-center .branch-index .branch-icon img,
.branch-index:hover .branch-icon img {
    filter: brightness(0) invert(1);
}

/* Responsive */


@media (min-width:1440px){

.branch-index .branch-title {
    height: 100px;
    
}
}
@media (max-width:991px){
    .branch-index {
        margin: 0px 0 15px;
    }

    .branch-index .branch-img {
        margin: 0;
    }

    .branch-index .branch-icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        margin-bottom: -40px;
    }
}






.contact-item {
    padding: 15px 0;
    background: var(--text-color);
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


 .box1 {
    width: 25px;
    height: 25px;
    position: absolute;
    background: var(--primary-color);
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
}

.box2 {
    width: 25px;
    height: 25px;
    position: absolute;
    background: var(--bg2-color);
    right: 25px;
    top: 25px;
    z-index: -1;
    transition: all 0.6s ease-in-out;
}
.branch-index:hover .box1 {
    top: -30px;
    right: -30px;
}

.branch-index:hover .box2 {
    right: -30px;
    top: -30px;
}



/* coming soon */
/* ===== Coming Soon CSS ===== */

.coming-soon-section {
    padding: 100px 20px;
    background: rgba(225, 225, 225, 0.447);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #f7fef3af;
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}


.coming-soon-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.coming-soon-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.coming-soon-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.coming-soon-btn:hover {
    background: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-wrapper {
        padding: 40px 20px;
    }

    .coming-soon-title {
        font-size: 30px;
    }

    .coming-soon-text {
        font-size: 15px;
    }
}