
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
:root{
    --green:#2b9b1f;
    --hover-green:#96CB32;
    --title-color: #181c28;
    --text-color: #767d8e;
    --footer-text:#222222;
    --white:#ffffff;
    --menu-txt:#066638;
    --heebo:"Heebo", sans-serif ;
    --poppins:'Poppins', sans-serif ;
    --ibm-plex:'IBM Plex Sans', sans-serif ;
    --p-font-size:16px;
    --font-size-14:14px; 
    --p-line-height:1.5em;
    --line-height: 1em;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --letter-spacing: 1.5px;
}
html{
	scroll-behavior: smooth;
    scroll-padding-top: 50px;
}
body {
	position: relative; 
	font-size: var(--p-font-size);
    color: var(--text-color);
	line-height: var(--p-line-height);
	font-family: var(--heebo);
	overflow-x: hidden;
    background: var(--white);
    padding-top: 0;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none !important;
    /* transition: all 0.3s; */
} 
a:focus, button:focus{
	outline: 0 !important;
} 
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1140px;
    }
}
header{
	position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}
/* Header with background when scrolled */
header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 1;
}
header .navbar-collapse{
    flex-grow: inherit;
}
.header-logo img{
    width: 190px;
    height: auto;
}
header .nav-link{
    font-family: var(--poppins);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: var(--font-weight-600);
    color: var(--white);
}
header .nav-link.active{
    color: var(--hover-green);
}
 
header .navbar-nav .nav-item .nav-link,
header .navbar-nav .nav-item .nav-link.active {
    padding-left: 15px;
    padding-right: 15px;
}

header .navbar-nav .nav-link.active,
header .navbar-nav .nav-item.show .nav-link {
    color: var(--hover-green);
    font-weight: 700;
}
header .nav-link:hover, header .nav-link.active:hover{
    color: var(--hover-green);
}
.header-scrolled .nav-link{
    color: var(--menu-txt);
}
.header-scrolled .nav-link.active{
    color: var(--hover-green);
}
.header-scrolled .nav-link:hover{
    color: var(--hover-green);
}
.header-contact .btn{
    background: var(--green); 
    border: 2px solid var(--green);
}
.header-contact .btn, .banner-btn{  
    border-radius: 5px 5px 5px 5px;
    padding:15px 20px;
    letter-spacing: var(--letter-spacing);
    line-height: var(--line-height);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-14);
    font-family: var(--ibm-plex);
    text-transform: uppercase; 
}
.banner-btn:hover, .header-contact .btn:hover{
    background: var(--hover-green);
    border: 2px solid var(--hover-green);
}
.banner-btn{
    background: none;
    border: 2px solid var(--white);
}
/* banner style */

/* Banner Video */
.banner {
      position: relative;
      height: 100vh; /* full screen height */
      overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    }

/* Background video styling - Responsive */
    .banner video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
    z-index: 1;
      transform: translate(-50%, -50%);
      object-fit: cover; /* maintains aspect ratio */
}

/* Video overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.45); Dark overlay */
    background: rgb(79 79 79 / 65%);
    z-index: 2;
}

/* Content on top of the video - Vertically centered */
    .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--green);
    font-family: Arial, sans-serif;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
    max-width: 800px;
    background: rgb(255 255 255 / 50%);
    padding: 30px;
    border-radius: 10px;
    }

    .banner-content h1 {
      font-size: 3rem;
      margin-bottom: 30px;
    font-weight: 700;
    }

    .banner-content p {
      font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--title-color);
}

.banner-content .btn {
    background-color: var(--green);
    color: var(--white);
      padding: 15px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 20px;
      font-size: 1rem;
    transition: all 0.3s ease;
}

.banner-content .btn:hover {
    background-color: var(--hover-green);
    transform: translateY(-2px);
}

/* Responsive styles for banner video */
@media (max-width: 768px) {
    .banner {
        height: 70vh;
        min-height: 400px;
    }
    
    .banner video {
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-content .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 60vh;
        min-height: 350px;
    }
    
    .banner-content h1 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
}

/* Responsive video for different aspect ratios */
@media (min-aspect-ratio: 16/9) {
    .banner video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .banner video {
        width: auto;
        height: 100%;
    }
    }
/* End */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,0.35);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    max-width: 95vw;
}
.banner-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.9em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.banner-text p {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 50px 0;
}
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 1.3rem;
    }
    .banner-text p {
        font-size: 0.95rem;
    }
    .banner-img {
        min-height: 120px;
        max-height: 220px;
    }
    .banner-text {
        padding: 1rem 0.5rem;
    }
}
/* End */
/* Banner Quote Box Styles */
.banner-quote-box {
    position: absolute; 
    right: 100px;
    background: #27a737;
    color: var(--white);
    border-radius: 16px;
    padding: 20px;
    min-width: 340px;
    max-width: 420px;
    z-index: 2;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    font-family: var(--heebo);
    overflow: hidden;
    font-size: var(--p-font-size);
    bottom: -100px;
}
.banner-quote-mark {
    position: absolute;
    right: 24px;
    bottom: 18px;
    font-size: 120px;
    color: #fff;
    opacity: 0.18;
    font-family: Arial, sans-serif;
    font-weight: bold;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.banner-quote-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 28px;
    margin-top: 0;
    z-index: 2;
    position: relative;
    line-height: 1.5;
}
.banner-quote-author {
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-600);
    z-index: 2;
    position: relative;
}
@media (max-width: 900px) {
    .banner-quote-box {
        right: 10px;
        top: 16px;
        min-width: 220px;
        max-width: 95vw;
        padding: 18px 14px 16px 14px;
    }
    .banner-quote-mark {
        font-size: 60px;
        right: 10px;
        bottom: 6px;
    }
    .banner-quote-text {
        font-size: 0.98rem;
        margin-bottom: 16px;
    }
    .banner-quote-author {
        font-size: 0.95rem;
    }
}
/*Home About */
.home-about-section {
    padding: 80px 0 60px 0;
}
.home-about-image{
    position: relative; 
}
.home-about-section .abt-img1{
    border-radius: 10px; 
    width: 80%;
    height: auto;
    margin: 0px auto;
    display: block;
} 
.home-about-image .abt-img2{
    position: absolute;
    bottom: 0px;
    left: 54px;
    width: 40%;
    border-style: solid;
    border-width: 20px 20px 0px 0px;
    border-color: var(--white);
    border-radius: 0px 10px 0px 0px;
}
.home-about-section .home-about-content{ 
    justify-content: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.title{
    font-size: 46px;
    color: var(--title-color);
    font-weight: var(--font-weight-600);
    margin-bottom: 20px;
    line-height: 1.2em;
    font-family: var(--poppins);
}
.home-about-content p{
    font-size: var(--p-font-size);
    color: var(--text-color);
    font-weight: var(--font-weight-400);
    margin-bottom: 50px;
    line-height: var(--p-line-height);
    font-family: var(--heebo);
    text-align: justify;
}
.home-about-content .btn{
    width: 200px;
}
.home-about-btn{
    border-radius: 5px 5px 5px 5px;
    padding: 18px 32px 18px 32px;
    background: var(--green);
    font-family: var(--ibm-plex);
    font-size: 12px;
    text-transform: uppercase;
    line-height: var(--line-height);
    font-weight: var(--font-weight-600);
    border: none; 
    transition: all 0.3s ease-in-out;
}
.home-about-btn:hover{
    background: var(--title-color);
    transform: translateY(-8px);
}
/* Counter Section */
.counter-row {
    padding: 0;
}
.counter-row .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
}
.counter-box {
    text-align: center;
    padding: 25px 15px;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    border-radius: 8px;
    height: 100%;
}
.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.counter-icon {
    font-size: 40px;
    color: var(--green);
    margin-bottom: 15px;
}
.counter-number {
    font-size: 36px;
    font-weight: var(--font-weight-700);
    color: var(--title-color);
    font-family: var(--poppins);
    line-height: 1.2;
    margin-bottom: 10px;
}
.counter {
    display: inline-block;
}
.counter-suffix {
    display: inline-block;
    font-size: 36px;
    color: var(--green);
}
.counter-title {
    font-size: 14px;
    font-family: var(--ibm-plex);
    color: var(--text-color);
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing);
    margin: 0;
}
.home-about-content .home-about-btn {
    margin-top: 30px;
    display: inline-block;
}
@media (max-width: 768px) {
    .counter-row {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .counter-row .col-md-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 20px;
    }
    .counter-box {
        padding: 20px 15px;
    }
    .counter-icon {
        font-size: 35px;
        margin-bottom: 12px;
    }
    .counter-number {
        font-size: 32px;
    }
    .counter-suffix {
        font-size: 32px;
    }
    .counter-title {
        font-size: 13px;
    }
    .home-about-content .home-about-btn {
        margin-top: 20px;
    }
}
@media (max-width: 576px) {
    .counter-row .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
}
/* End */
/* Home-landcape */

.dbl-txt {
        
        position: absolute;
        top: -25px;
        left: -50px;
        font-size: 140px;
        font-weight: 800;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px rgba(24, 28, 40, 0.10);
        pointer-events: none;
        line-height: 1;
        letter-spacing: 2px;
        z-index: -1;
        font-family: var(--poppins);
  }
  
  @supports (-webkit-text-stroke: 1px #ececec) {
    .dbl-txt {
      -webkit-text-stroke: 1px #ececec;
      -webkit-text-fill-color: white;
    }
  }
.home-landscapes-section{
    padding:0; 
    position: relative;
    /* background: #f9f9f9; */
}
.home-landscapes-section::before{
    content: "";
    position: absolute; 
    top: -200px;
    right: 0;
    width: 350px;
    height: 350px;
    background: url("../images/bg-img.png") no-repeat center center;
    background-size: cover;
    z-index: 0;
    opacity: 0.1;
}
.home-landscapes-content{
    position: relative;
}
.home-landscapes-content .title{
    font-size: 36px;
    font-family: var(--ibm-plex);
    margin-bottom: 50px;;
}
.home-landscapes-content .dbl-txt{
    left: 0;
    right: 0;
}
.section-title{
    font-family: var(--ibm-plex);
    text-transform: uppercase;
    font-size: var(--font-size-14);
    letter-spacing: var(--letter-spacing);
    font-weight: var(--font-weight-600);
    line-height: 1.2em;
    color: var(--green);
    position: relative;
    padding-left:15px;
    margin: 0px 15px 30px 15px;
    font-weight: var(--font-weight-600);
}
.section-title::after{
    content: "";
    position: absolute;
    border-left: 2px solid var(--green);
    height: 20px;
    left: 0;
}
/* Landscapes Tab Design */
.landscapes-tab-wrapper {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    padding-left: 50px;
}
.home-landscapes-content{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.center-txt::after{
    display: none;
    padding-left: 0;
}
.tab-eyebrow{
    font-family: var(--ibm-plex);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--text-color);
    display: inline-block;
    margin-bottom: 12px;
}
.landscapes-tab-wrapper .col-md-3 h2{
    padding-right: 50px;
    max-width: 300px;
    margin: 0 0 50px;
}
.landscapes-tab-menu {
    padding-right: 40px;
}
.tab-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding: 0 30px;
}
.tab-header-text {
    font-family: var(--ibm-plex);
    font-size: 14px;
    color: var(--text-color);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.tab-header-text::before,
.tab-header-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--text-color);
}
.tab-header-text::before {
    left: -40px;
}
.tab-header-text::after {
    right: -40px;
}
.tab-company-name {
    font-size: 48px;
    font-weight: var(--font-weight-700);
    color: var(--title-color);
    font-family: var(--poppins);
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.all-services-btn {
    background: var(--hover-green);
    border: none;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.all-services-btn:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 155, 31, 0.3);
}
.all-services-btn i {
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.landscapes-tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landscapes-tab-item {
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}
.landscapes-tab-item .tab-item-content {
    display: flex;
    align-items: center;
    padding: 30px 25px;
    background: var(--white);
    border: 1px solid rgb(24 28 40 / 15%);
    transition: all 0.3s ease;
    position: relative;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
.landscapes-tab-item .tab-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--text-color);
    font-size: 24px;
    flex-shrink: 0;
}
.landscapes-tab-item .tab-text {
    flex: 1;
    font-size: 18px;
    font-weight: var(--font-weight-600);
    color: var(--title-color);
    font-family: var(--ibm-plex);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.landscapes-tab-item .tab-arrow-btn {
    width: 40px;
    height: 40px;
    background: var(--hover-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}
.landscapes-tab-item:hover .tab-item-content,
.landscapes-tab-item.active .tab-item-content{
    background: #2b9b1f;
    border-left: 10px solid #3c6f36;
    transition: all 0.3s linear;
}
.landscapes-tab-item:hover .tab-text,
.landscapes-tab-item.active .tab-text {
    color: var(--white);
}
.landscapes-tab-item:hover .tab-icon,
.landscapes-tab-item.active .tab-icon {
    color: var(--hover-green);
}
.landscapes-tab-item:hover .tab-arrow-btn,
.landscapes-tab-item.active .tab-arrow-btn {
    opacity: 1;
    transform: scale(1);
    background: var(--hover-green);
}
/* Landscapes Image Display */
.landscapes-image-display {
    position: relative;
}
.landscapes-main-image {
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}
.landscapes-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.landscapes-main-image:hover img {
    transform: scale(1.05);
}
.landscapes-video-section {
    position: relative;
}
.video-thumbnail {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}
.video-thumbnail::before {
    content: "";
   position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" opacity="0.1" width="1200" height="600"/></svg>');
    opacity: 0.3;
}
.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.video-play-btn {
    width: 60px;
    height: 60px;
    background: var(--hover-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.video-thumbnail:hover .video-play-btn {
    transform: scale(1.1);
    background: var(--green);
}
.video-info {
    position: relative;
    z-index: 1;
}
.video-info h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: var(--font-weight-700);
    margin-bottom: 5px;
    font-family: var(--poppins);
}
.video-info p {
    color: var(--white);
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    font-family: var(--heebo);
}
@media (max-width: 992px) {
    .landscapes-tab-menu {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .tab-company-name {
        font-size: 36px;
    }
    .landscapes-main-image {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .tab-company-name {
        font-size: 28px;
    }
    .landscapes-tab-item .tab-item-content {
        padding: 15px 20px;
    }
    .landscapes-tab-item .tab-text {
        font-size: 16px;
    }
    .landscapes-main-image {
        height: 300px;
    }
    .video-thumbnail {
        padding: 20px;
    }
}

/* End */
/* Why Choose Section */
.why-choose-section{
    padding: 100px 0 60px;
    position: relative;
}
.why-choose-section::before{
    content: "";
    position: absolute;
    top: -200px;
    left: 0;
    width: 50%;
    height: 50%;
    background: url(../images/pattern1.png) no-repeat center center;
    background-size: cover;
    z-index: 0;
    filter: grayscale(100%);
}
.why-choose-section .container{
    position: relative;
    z-index: 1;
}
.why-outline-text{
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 180px;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(24, 28, 40, 0.06);
    pointer-events: none;
    line-height: 1;
    letter-spacing: 8px;
}
.why-subtitle{
    font-family: var(--ibm-plex);
    text-transform: uppercase;
    color: var(--green);
    font-size: 14px;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}
.why-subtitle::before{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.why-title{
    font-size: 42px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--poppins);
    line-height: 1.3;
    margin-bottom: 40px;
}
.why-feature-card{
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(24, 28, 40, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.why-feature-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(150,203,50,0.25), rgba(43,155,31,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
}
.why-feature-text h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--title-color);
    font-family: var(--poppins);
}
.why-feature-text p{
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}
.why-feature-list li{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}
.why-feature-list li:last-child{
    margin-bottom: 0;
}
.feature-bullet{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(43,155,31,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 14px;
    flex-shrink: 0;
}
.why-feature-list h4{
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 6px;
    font-family: var(--poppins);
}
.why-feature-list p{
    margin: 0;
    color: var(--text-color);
}
.why-choose-content{
    position: relative;
    padding-left: 50px;
}
.why-choose-section .dbl-txt{
    left: 10px;
    font-size: 125px;
}
.why-choose-tiles{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 160px);
    grid-template-areas:
        "orange image-top"
        "orange image-top"
        "image-bottom green"
        "image-bottom green";
    
}
.why-tile{
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    padding: 30px;
    color: #fff;
}
.tile-orange{
    grid-area: orange;
    background: #ff6b2c;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.tile-green{
    grid-area: green;
    background: #27a737;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.tile-image-top{
    grid-area: image-top;
}
.tile-image-bottom{
    grid-area: image-bottom;
}
.tile-orange::before,
.tile-green::before{
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    z-index: 0;
}
.tile-orange::after{
    content: "\f0e7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 90px;
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgba(255,255,255,0.15);
}
.tile-green::after{
    content: "\f06c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 90px;
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgba(255,255,255,0.15);
}
.why-tile h3{
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 20px 0;
    font-family: var(--poppins);
}
.tile-line{
    position: relative;
    z-index: 1;
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    display: inline-block;
    margin-bottom: 40px;
}
.tile-circle{
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--title-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(24,28,40,0.15);
    transition: transform 0.3s ease;
}
.tile-circle:hover{
    transform: translateY(-4px);
}
.tile-image{
    padding: 0;
}
.tile-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tile-image-top img{
    clip-path: inset(30px 0 0 0);
}
.tile-image-bottom img{
    clip-path: inset(0 0 30px 0);
}
@media (max-width: 992px){
    .why-choose-tiles{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, 140px);
        grid-template-areas:
            "orange image-top"
            "orange image-top"
            "image-bottom green"
            "image-bottom green";
    }
    .why-choose-content{
        padding-left: 20px;
    }
}
@media (max-width: 768px){
    .why-title{
        font-size: 32px;
    }
    .why-choose-tiles{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: none;
    }
    .tile-orange,
    .tile-green,
    .tile-image-top,
    .tile-image-bottom{
        grid-area: auto;
    }
    .why-choose-content{
        padding-left: 0;
        margin-top: 40px;
    }
}
/* End */
/* Works Section */
.works-section{
    padding: 50px 0px 70px;
    position: relative;
    background: #fff;
}
.works-section::before{
    content: "";
    position: absolute;
    top: -200px;
    right: 0;
    width: 50%;
    height: 50%;
    background: url(../images/pattern-2.png) no-repeat center center;
    background-size: cover;
    z-index: 0;
}
.works-section .container{
    position: relative;
    z-index: 1;
}
.works-outline-text{
    position: absolute;
    top: 20px;
    left: 0px;
    right: 0px;
    font-size: 140px;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(24, 28, 40, 0.10);
    pointer-events: none;
    line-height: 1;
    letter-spacing: 2px;
    z-index: 0;
    font-family: var(--poppins);
}
.works-section .section-title:after{
    display: none;
}
.works-header{
    
    max-width: 800px;
    margin: 0 auto 60px;
}
.works-title{
    font-size: 42px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--poppins);
    line-height: 1.3;
    margin-bottom: 20px;
}
.works-description{
    font-size: var(--p-font-size);
    color: var(--text-color);
    line-height: var(--p-line-height);
    margin: 0;
}
.works-slider-wrapper{
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}
.works-carousel{
    position: relative;
}
.works-carousel .item{
    padding: 0 5px;
}
.works-card{
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}
.works-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.works-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}
.works-card:hover .works-overlay{
    opacity: 1;
}
.works-card:hover .works-image{
    transform: scale(1.1);
}
.works-overlay-content{
    width: 100%;
    color: var(--white);
}
.works-category{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 10px;
    font-family: var(--ibm-plex);
}
.works-project-title{
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 20px 0;
    font-family: var(--poppins);
}
.works-arrow-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.works-arrow-btn:hover{
    background: var(--green);
    color: var(--white);
    transform: translateX(5px);
}
.works-card-orange{
    background: #ff6b2c;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}
.works-card-content{
    width: 100%;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.works-card-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
}
.works-card-orange .works-category{
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}
.works-card-orange .works-project-title{
    font-size: 28px;
    margin: 0;
}
/* Owl Carousel Navigation */
.works-carousel .owl-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.works-carousel .owl-nav button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white) !important;
    border: 2px solid var(--green) !important;
    color: var(--green) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    pointer-events: all;
    margin: 0 !important;
    position: relative;
}
.works-carousel .owl-nav button:hover{
    background: var(--green) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}
.works-carousel .owl-nav button:focus{
    outline: none;
}
.works-carousel .owl-nav button.owl-prev{
    order: 1;
}
.works-carousel .owl-nav button.owl-next{
    order: 2;
}
/* Owl Carousel Dots */
.works-carousel .owl-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}
.works-carousel .owl-dots button{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(24, 28, 40, 0.20) !important;
    border: none;
    padding: 0;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.works-carousel .owl-dots button:hover{
    background: var(--green) !important;
    transform: scale(1.2);
}
.works-carousel .owl-dots button.active{
    background: var(--green) !important;
    width: 30px;
    border-radius: 6px;
    transform: scale(1);
}
@media (max-width: 992px){
    .works-outline-text{
        font-size: 120px;
    }
    .works-slider-wrapper{
        padding: 0 40px;
    }
    .works-nav-prev{
        left: -40px;
    }
    .works-nav-next{
        right: -40px;
    }
}
@media (max-width: 768px){
    .works-title{
        font-size: 32px;
    }
    .works-card{
        height: 350px;
    }
    .works-slider-wrapper{
        padding: 0 20px;
    }
    .works-carousel .owl-nav{
        display: none;
    }
}
/* End */

/* footer */
footer{
    background: url(../images/footer-bg1.jpg) no-repeat center center;
    padding: 80px 0 0 0; 
    position: relative;
    background-size: cover;
}
footer::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    z-index: 0;
}
footer .footer-logo-box{
    padding: 30px 50px;
    border: 1px solid var(--hover-green);
    border-radius: 8px; 
    color: var(--white);
}
footer .footer-logo-box img{
    width: 200px;
    height: auto;
    margin: 0px auto 30px auto;
    display: block;
    color: var(--white);
}
.footer-box{
    padding: 0px 30px;
}
.footer-box h3{
    font-size: 20px;
    font-family: var(--poppins);
    color: var(--white);
    font-weight: var(--font-weight-600);
    line-height: 1.2em;
    letter-spacing: var(--letter-spacing);
    margin-bottom: 20px;
}
.footer-contact-info{
    margin: 30px 0 0 0;
}
.footer-contact-info li{
    padding-bottom: 15px; 
}
.footer-contact-info li:last-child{
    padding-bottom: 0px;
}
.footer-contact-info li i{
    color: var(--green);
    margin-right: 10px;
}
.footer-box li{
    padding-bottom: 10px;
    color: var(--white);
    font-family: var(--heebo);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}
.footer-box li::before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--hover-green);
    font-size: 13px;
    width: 16px;
    height: 16px;
    line-height: 1;
    background: none;
}
.footer-social li{
    padding-right: 15px;
}
.footer-social li:last-child{
    padding-right: 0px;
}   
.footer-social li a{
    font-size: 15px;
    color: var(--white);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 2px solid var(--hover-green);
    background: var(--hover-green);
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.footer-social li a:hover{
    background: var(--white);
    color: var(--green);
    border: 2px solid var(--white);
}
.footer-content{
    background: #14764a;
    padding: 5px 0;
    color: var(--white);
    font-size: 14px;
    margin-top: 50px;
    position: relative;
}

/* Dropdown Menu Styles */
header .navbar-toggler {
    border: 2px solid var(--green);
    padding: 8px 12px;
    border-radius: 5px;
}
header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(43, 155, 31, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(43, 155, 31, 0.25);
}
header .nav-item.dropdown {
    position: relative;
}
/* Contact button in menu (mobile) */
.nav-item-contact-mobile {
    display: none;
}
.nav-link-contact {
    color: var(--green) !important;
    font-weight: var(--font-weight-600);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-link-contact:hover {
    color: var(--hover-green) !important;
}
/* Desktop contact button */
.header-contact-desktop {
    display: block;
}
header .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
}
header .dropdown-menu {
    background: var(--white);
    border: 1px solid rgba(24, 28, 40, 0.1);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 0;
    min-width: 220px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 1000;
    padding-top: 12px;
}
/* Create invisible hover area above dropdown */
header .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: -1;
}
/* Show top-level dropdown on hover */
header .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Keep dropdown open when hovering over it */
header .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Ensure top-level dropdown stays visible when moving from parent to its menu */
header .nav-item.dropdown:hover > .dropdown-menu,
header .nav-item.dropdown > .dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}
/* Show dropdown when Bootstrap adds 'show' class (for mobile/click) */
header .nav-item.dropdown.show .dropdown-menu,
header .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
}
/* Ensure dropdowns work on mobile with Bootstrap */
@media (max-width: 991px) {
    header .nav-item.dropdown.show > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }
    header .dropdown-submenu.show > .dropdown-menu {
        display: block !important;
        position: static !important;
        margin-left: 20px;
    }
}
header .dropdown-item {
    padding: 12px 20px;
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: var(--font-weight-500);
    color: var(--menu-txt);
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(24, 28, 40, 0.05);
}
header .dropdown-item:last-child {
    border-bottom: none;
}
header .dropdown-item:hover,
header .dropdown-item:focus {
    background: var(--green);
    color: var(--white);
}
header .dropdown-item:active {
    background: var(--hover-green);
    color: var(--white);
}

/* Nested dropdown (child menu) for Our Landscapes */
header .dropdown-submenu {
    position: relative;
}
header .dropdown-submenu > .dropdown-menu {
    top: -10px;
    left: 100%;
    margin-left: 0;
    border-radius: 5px;
    min-width: 240px;
}
/* Show child menu on hover of Wind & Solar Power */
header .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}
/* Indicate item has children */
header .dropdown-item.has-children {
    position: relative;
}
header .dropdown-item.has-children i {
    font-size: 12px;
    margin-top: 2px;
}
@media (max-width: 991px) {
    header .dropdown-item.has-children i {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }
    header .dropdown-submenu.show > .dropdown-item.has-children i {
        transform: rotate(90deg);
    }
}
header .dropdown-item.has-children::after {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

/* Page Banner Section */
.page-banner-section {
    background-image: url('../images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 80px 0;
    margin-top: 0;
    padding-top: 230px;
    position: relative;
    overflow: hidden;
}
.page-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(0deg,rgba(97, 97, 97, 0.7) 0%, rgba(184, 181, 178, 0.45) 100%);; */
    /* background: rgb(255 255 255 / 55%); */
    background: linear-gradient(90deg,rgba(15, 15, 15, 0.05) 0%, rgba(13, 13, 13, 0.7) 40%, rgba(10, 10, 10, 0.7) 70%, rgba(5, 5, 5, 0.51) 100%);;
    pointer-events: none;
}
/* .page-banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/texture.png');
    background-position: center;
    background-repeat: repeat;
    background-size: 300px 300px;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
} */
.page-banner-content {
    position: relative;
    z-index: 2;
    color: var(--green);
}
.page-banner-content h1 {
    font-size: 48px;
    font-weight: var(--font-weight-700);
    font-family: var(--poppins);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.page-banner-content p {
    font-size: 18px;
    font-family: var(--heebo);
    opacity: 0.9;
}
@media (max-width: 768px) {
    .page-banner-section {
        padding: 200px 0 60px 0;
        margin-top: 0;
    }
    .page-banner-content h1 {
        font-size: 32px;
    }
    .page-banner-content p {
        font-size: 16px;
    }
}

/* About Section */
.about-section {
    padding: 60px 0;
    position: relative;
}
.about-section .title{
    font-size: 30px;
}

.sec-title{
position:relative;
z-index: 1;
margin-bottom:60px;
}

.sec-title .text{
position: relative;
font-size: 16px;
line-height: 26px;
color: #848484;
font-weight: 400;
margin-top: 35px;
}

.sec-title.light h2{
color: #ffffff;
}

.sec-title.text-center h2:before{
left:50%;
margin-left: -25px;
}

.list-style-one{
position:relative;
}

.list-style-one li{
position:relative;
font-size:16px;
line-height:26px;
color: var(--white);
font-weight:400;
padding-left:35px;
margin-bottom: 12px;
}

.list-style-one li:before {
content: "\f058";
position: absolute;
left: 0;
top: 0px;
display: block;
font-size: 18px;
padding: 0px;
color: var(--green);
font-weight: 600;
-moz-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1.6;
font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
color: var(--hover-green)
}

.theme-btn{
position: relative;
display: inline-block;
font-size: 15px;
line-height: 20px;
color: var(--green);
padding: 10px 20px;
font-weight: 600;
overflow: hidden;
letter-spacing: 0.02em;
border: 2px solid var(--green);
z-index: 1;
}
.theme-btn:hover{
    background: var(--green);
    color: var(--white);
    transition: all 0.5s linear
}

.about-section{
position: relative;
padding: 120px 0 70px;
}

.about-section .sec-title{
margin-bottom: 45px;
}

.about-section .content-column{
position: relative;
margin-bottom: 50px;
}

.about-section .content-column .inner-column{
position: relative;
padding-left: 30px;
}

.about-section .text{
margin-bottom: 40px;
font-size: 16px;
line-height: 26px;
color: #848484;
font-weight: 400;
}

.about-section .list-style-one{
margin-bottom: 45px;
}

.about-section .btn-box{
position: relative;
}

.about-section .btn-box a{
padding: 15px 50px;
}

.about-section .image-column{
position: relative;
}

.about-section .image-column .text-layer{
position: absolute;
right: -110px;
top: 50%;
font-size: 325px;
line-height: 1em;
color: #ffffff;
margin-top: -175px;
font-weight: 500;
}

.about-section .image-column .inner-column{
position: relative;
padding-left: 120px;
padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
position: absolute;
left: -75px;
top: 65px;
height: 520px;
width: 520px;
background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
content: "";
}

.about-section .image-column .image-1{
position: relative;
}

.about-section .image-column .image-2{
position: absolute;
left: 0;
bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
position: absolute;
left: 70px;
top: 170px;
}

.about-section .image-column .video-link .link{
position: relative;
display: block;
font-size: 22px;
color: #191e34;
font-weight: 400;
text-align: center;
height: 100px;
width: 100px;
line-height: 100px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 30px 50px rgba(8,13,62,.15);
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
background-color: #191e34;
color: #fff;
}

/* Vision and Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    background: url(../images/vision-mission-bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}


.vision-mission-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.vm-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 2px solid transparent;
    transform-origin: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--hover-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.vm-card:hover::before {
    transform: scaleX(1);
}
.vm-card:hover {
    flex: 1.4;
    background: linear-gradient(135deg, var(--green), var(--hover-green));
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 20px 45px rgba(43, 155, 31, 0.25);
    transform: translateY(-12px);
}
.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}
.vm-card:hover .vm-icon {
    background: var(--white);
    color: var(--green);
    transform: scale(1.1) rotate(360deg);
}
.vm-card h3 {
    font-size: 28px;
    font-weight: var(--font-weight-600);
    color: var(--title-color);
    font-family: var(--poppins);
    margin-bottom: 20px;
    transition: color 0.5s ease;
}
.vm-card:hover h3 {
    color: var(--white);
}
.vm-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    transition: color 0.5s ease;
}
.vm-card:hover p {
    color: var(--white);
}
.vm-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 40px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-radius: 0 0 15px 15px;
}
.vm-card:hover .vm-overlay {
    transform: translateY(0);
}
.vm-overlay h4 {
    font-size: 20px;
    font-weight: var(--font-weight-600);
    color: var(--green);
    font-family: var(--poppins);
    margin-bottom: 8px;
}
.vm-overlay p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

/* Vision & Mission Highlight Section */
.vision-mission-highlight-section{
    position: relative;
}
.vision-mission-highlight-section:before{
    position: absolute;
    content: "";
    top: -150px;
    right: 0;
    width: 100%;
    height: 60%;
    background: url(../images/energy-bg.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
    filter: grayscale(100%);
    opacity: 0.1;
}
.vision-mission-highlight-section .section-header {
    max-width: 600px;
    margin:0 auto 60px;
}
.vision-mission-highlight-section .section-header h2 {
    font-size: 40px;
    font-weight: var(--font-weight-600);
    color: var(--title-color);
    font-family: var(--poppins);
}
.vision-mission-highlight-wrapper {
    display: flex;
    align-items: stretch;
}
.vmh-content-card {
    flex: 1.2;
    background: var(--menu-txt);
    color: #ffffff;
    padding: 65px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vmh-eyebrow {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: var(--font-weight-600);
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.vmh-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: var(--font-weight-600);
    margin-bottom: 25px;
    font-family: var(--poppins);
}
.vmh-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.vmh-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.85);
    font-family: var(--heebo);
}
.vmh-feature-list li i {
    font-size: 18px;
    color: var(--hover-green);
}
.vmh-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #5ad71f, #3fc800);
    color: #ffffff;
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.vmh-btn-text {
    padding: 18px 28px;
}
.vmh-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    background: rgba(0,0,0,0.15);
    transition: background 0.3s ease;
}
.vmh-btn:hover {
    transform: translateY(-4px);
}
.vmh-btn:hover .vmh-btn-icon {
    background: rgba(0,0,0,0.3);
}
.vmh-image-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    transition: all 0.5s ease;
    cursor: pointer;
}
.vmh-image-card:hover {
    flex: 1.35;
}
.vmh-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.6s ease;
}
.vmh-image-card:hover .vmh-image {
    transform: scale(1.1);
}
.vmh-image-overlay {
    position: absolute;
    inset: 0;
    padding: 40px 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    background: linear-gradient(180deg, rgba(5,15,40,0.05) 0%, rgba(5,15,40,0.55) 45%, rgba(5,15,40,0.85) 100%);
    color: #ffffff;
    transition: background 0.45s ease;
}
.vmh-image-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 132, 65, 0.6), rgba(88, 208, 92, 0.25));
    opacity: 0;
    transition: opacity 0.45s ease;
}
.vmh-image-icon {
    position: relative;
    font-size: 28px;
}
.vmh-image-label {
    display: block;
    font-size: 20px;
    font-family: var(--poppins);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: var(--font-weight-600);
}
.vmh-image-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vmh-image-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}
.vmh-image-card:hover .vmh-image-overlay {
    background: linear-gradient(180deg, rgba(5,15,40,0.05) 0%, rgba(16,139,71,0.6) 45%, rgba(16,139,71,0.95) 100%);
}
.vmh-image-card:hover .vmh-image-overlay::before {
    opacity: 0.45;
}

@media (max-width: 768px) {
    .vision-mission-highlight-section {
        padding: 60px 0;
    }
    .vision-mission-highlight-wrapper {
        flex-direction: column;
    }
    .vmh-content-card {
        padding: 45px 35px;
    }
    .vmh-title {
        font-size: 32px;
    }
    .vmh-btn {
        width: 100%;
        justify-content: space-between;
    }
    .vmh-image-card,
    .vmh-image-card:hover {
        flex: 1;
    }
}

/* Client Logos Section */
.client-logos-section {
    padding: 80px 0;
    overflow: hidden;
}
.client-logos-section .dbl-txt{
    left: 0;
    right: 0;
}
.client-logos-wrapper {
    margin-top: 50px;
}
.client-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
}
.client-logos-row.row-1 {
    margin-bottom: 30px;
}
.client-logo-item {
    flex: 0 0 auto;
    width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}
.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 768px) {
    .client-logos-section {
        padding: 60px 0;
    }
    .client-logos-row {
        gap: 20px;
    }
    .client-logo-item {
        width: 150px;
        height: 80px;
        padding: 15px 20px;
    }
}

/* Management Page */
.management-banner {
    background-image: url('../images/management-banner.jpg');
}
.management-section {
    padding: 90px 0 120px;
    position: relative;
}
.management-section .section-header {
    max-width: 760px;
    margin: 0 auto 60px;
}
.management-section .section-header p {
    font-size: 18px;
    color: var(--text-color);
}
.management-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.management-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    position: relative;
}
.management-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}
.management-card::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2b9b1f, #7abe2d, #2b9b1f);
    pointer-events: none;            /* ensures hover/click works on card */
    transition: opacity 0.3s ease;
}
.management-card:hover::after {
    opacity: 0.85;
}
.management-photo{
    display: flex;
    align-items: center;
}
.management-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
    border: 6px solid rgba(150, 203, 50, 0.1);
}

.management-info h4 {
    font-size: 20px;
    font-weight: var(--font-weight-600);
    color: var(--title-color);
    margin-bottom: 8px;
    font-family: var(--poppins);
}
.management-info span {
    font-size: 14px;
    color: var(--text-color);
    font-family: var(--ibm-plex);
    font-style: italic;
}
.management-plus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--hover-green));
    color: var(--white);
    border: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.management-card:hover .management-plus,
.management-card.active .management-plus {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(43, 155, 31, 0.35);
}
.management-plus span {
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 1;
}
.management-card.active .management-plus {
    background: linear-gradient(135deg, var(--hover-green), var(--green));
}
.management-detail {
    display: none;
    background: #ededed;
    box-shadow: 0 25px 50px rgba(24, 28, 40, 0.12);
    padding: 30px;
    position: relative;
    border-bottom: 4px solid var(--hover-green);
}
.management-detail.active {
    display: block;
}
.detail-inner {
    position: relative;
}
.detail-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(24, 28, 40, 0.08);
    color: var(--title-color);
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.detail-close:hover {
    background: rgba(24, 28, 40, 0.2);
}
.detail-content {
    display: flex;
    gap: 30px;
    align-items: center;
}
.detail-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 8px solid rgba(150, 203, 50, 0.15);
}
.detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-text h4 {
    font-size: 26px;
    font-weight: var(--font-weight-600);
    margin-bottom: 5px;
    color: var(--title-color);
}
.detail-text span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    font-weight: var(--font-weight-600);
}
.detail-text p {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}
.detail-text p:first-of-type {
    margin-top: 18px;
}
.detail-text p:not(:last-of-type) {
    margin-bottom: 16px;
}
.detail-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.detail-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(43, 155, 31, 0.1);
    color: var(--green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}
.detail-social a:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(43, 155, 31, 0.3);
}
@media (max-width: 992px) {
    .management-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .management-section {
        padding: 70px 0 80px;
    }
    .management-row {
        grid-template-columns: 1fr;
    }
    .detail-content {
        flex-direction: column;
        text-align: center;
    }
    .detail-photo {
        width: 140px;
        height: 140px;
    }
    .detail-social {
        justify-content: center;
    }
}

/* Certifications Page */
.certifications-banner {
    background-image: url('../images/certifications-banner.jpg');
}

/* Our Landscapes Page */
.landscapes-banner {
    background-image: url('../images/landscape-banner.jpg');
}
.landscapes-page-section {
    padding: 90px 0 120px;
}
.landscapes-page-section .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}
.landscapes-page-section .section-header p {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 15px;
}
.landscapes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}
.landscape-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.landscape-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.landscape-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: #f5f5f5;
}
.landscape-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.landscape-card:hover .landscape-image-wrapper img {
    transform: scale(1.1);
}
.landscape-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 12px;
}
.landscape-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}
.landscape-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.landscape-content h3 {
    font-size: 24px;
    font-weight: var(--font-weight-600);
    color: var(--title-color);
    margin-bottom: 15px;
    font-family: var(--poppins);
}
.landscape-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    flex: 1;
}
.landscape-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.landscape-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.6;
}
.landscape-features li:last-child {
    margin-bottom: 0;
}
.landscape-features li i {
    color: var(--green);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}
.landscape-readmore-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
}
.landscape-readmore-btn:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 102, 56, 0.3);
}
.landscape-readmore-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}
.landscape-readmore-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 992px) {
    .landscapes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .landscapes-page-section {
        padding: 70px 0 80px;
    }
    .landscapes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .landscape-content {
        padding: 25px 20px;
    }
    .landscape-content h3 {
        font-size: 22px;
    }
}

/* Wind & Solar vertical services page */
.wind-solar-banner{
    background-image: url('../images/wind-solar-pannel.jpg');
}
.ws-services-section {
    padding: 70px 0 70px;
    background: #f5f7f9;
}
.ws-sidebar {
    background: #e6f5e9;
    border-radius: 24px;
    padding: 30px 20px 30px;
}
.ws-sidebar-title {
    font-size: 20px;
    font-weight: var(--font-weight-600);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--title-color);
}
.ws-tab-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ws-tab-link {
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    padding: 16px 18px;
    border-radius: 14px;
    background: #066638;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: var(--font-weight-500);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ws-tab-link .ws-tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ws-tab-link .ws-tab-icon i {
    font-size: 14px;
}
.ws-tab-link .ws-tab-text {
    flex: 1;
}
.ws-tab-link.is-active,
.ws-tab-link:hover {
    background: var(--hover-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}
.ws-panels {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 30px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}
.ws-panel {
    display: none;
}
.ws-panel.is-active {
    display: block;
}
.ws-panel-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--green);
}
.ws-panel-header p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}
.ws-panel-body {
    display: grid;
    align-items: flex-start;
}
.ws-panel-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 14px;
}
.ws-panel-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}
.ws-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}
.ws-panel-features li i {
    color: var(--green);
    margin-top: 2px;
}
.ws-panel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.ws-image-col {
    padding: 5px;
}

@media (max-width: 992px) {
    .ws-panel-body {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .ws-services-section {
        padding: 70px 0 90px;
    }
    .ws-panels {
        margin-top: 30px;
        padding: 25px 20px 30px;
    }
}

.ws-consult-section {
    padding: 0 0 90px;
}
.ws-consult-card {
    max-width: 540px;
    margin: 0 auto;
    background: #066638;
    border-radius: 24px;
    padding: 32px 24px 32px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.ws-consult-card h3 {
    font-size: 20px;
    line-height: 1.6;
    font-weight: var(--font-weight-600);
    margin-bottom: 24px;
}
.ws-consult-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
}
.ws-consult-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #066638;
    font-size: 24px;
}
.ws-consult-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.ws-consult-number {
    display: block;
    font-size: 24px;
    font-weight: var(--font-weight-700);
    color: #fff;
    text-decoration: none;
}
.ws-consult-number:hover {
    text-decoration: underline;
}
.ws-consult-btn {
    margin-top: 4px;
    background: #fff;
}
.ws-consult-btn:hover{
    background: var(--hover-green);
}
@media (max-width: 576px) {
    .ws-consult-card {
        padding: 28px 18px 30px;
    }
    .ws-consult-body {
        flex-direction: column;
    }
}

/* Projects Page */
.projects-banner {
    background-image: url('../images/about-banner.jpg');
}
.projects-section {
    padding: 90px 0 120px;
    position: relative;
}
.projects-section .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}
.projects-section .section-header p {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 15px;
}
.projects-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}
.project-filter-btn {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: var(--font-weight-600);
}
.project-filter-btn.is-active,
.project-filter-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    min-height: 400px;
}
.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.4s ease;
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
    will-change: transform, opacity;
}
.project-card.is-hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(0) scale(0.95);
}
.project-card:hover:not(.is-hidden) {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.project-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: #f5f5f5;
}
.project-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.project-image-wrapper img[src=""],
.project-image-wrapper img:not([src]) {
    display: none;
}
.project-card:hover .project-image-wrapper img {
    transform: scale(1.1);
}
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay {
    opacity: 1;
}
.project-type {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    align-self: flex-start;
}
.project-info h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: var(--font-weight-600);
    margin-bottom: 8px;
    font-family: var(--poppins);
}
.project-info .project-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}
.project-info .project-location i {
    margin-right: 6px;
    font-size: 12px;
}
.project-content {
    padding: 25px;
}
.project-content h3 {
    font-size: 22px;
    font-weight: var(--font-weight-600);
    color: var(--title-color);
    margin-bottom: 10px;
    font-family: var(--poppins);
}
.project-location-text {
    font-size: 14px;
    color: var(--green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.project-location-text i {
    font-size: 12px;
}
.project-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .projects-section {
        padding: 70px 0 80px;
    }
    .projects-filters {
        gap: 8px;
        margin-bottom: 40px;
    }
    .project-filter-btn {
        padding: 10px 18px;
        font-size: 11px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .project-content {
        padding: 20px;
    }
    .project-content h3 {
        font-size: 20px;
    }
}
.certifications-section {
    padding: 90px 0 120px;
    position: relative;
}

.certifications-section .section-header p {
    font-size: 16px;
    color: var(--text-color);
    margin-top: 15px;
    text-align: left;
}
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.certificate-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.certificate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.certificate-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}
.certificate-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.certificate-item:hover .certificate-image {
    transform: scale(1.05);
}
.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 155, 31, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.certificate-item:hover .certificate-overlay {
    opacity: 1;
}
.certificate-view {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(0.8);
}
.certificate-item:hover .certificate-view {
    transform: scale(1);
}
.certificate-view:hover {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}
.certificate-info {
    padding: 25px 20px;
    text-align: center;
}
.certificate-info h4 {
    font-size: 22px;
    font-weight: var(--font-weight-600);
    color: var(--title-color);
    margin-bottom: 8px;
    font-family: var(--poppins);
}
.certificate-info p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    font-family: var(--ibm-plex);
}
@media (max-width: 992px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .certifications-section {
        padding: 70px 0 80px;
    }
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .certificate-image-wrapper {
        padding-top: 75%;
    }
}

/* Contact Page */
.contact-banner {
    background-image: url('../images/footer-bg1.jpg');
}
.contact-hero {
    padding: 110px 0 90px;
}
.contact-hero-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: stretch;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    border-radius: 24px;
    filter: grayscale(1) contrast(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.contact-form-panel {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-form-header span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
}
.contact-form-header h2 {
    font-size: 48px;
    margin-top: 10px;
    line-height: 1.1;
    color: var(--title-color);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* Rooftop solar page */
.rooftop-banner {
    background-image: url('../images/rooftop-solar.jpg');
}
.rooftop-intro-section {
    padding: 80px 0 40px;
    background: #fff;
}
.rooftop-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.rooftop-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}
.rooftop-layout-section {
    padding: 40px 0 80px;
}
.rooftop-layout {
    background: #0a7a46;
    color: #fff;
    position: relative;
}
.rooftop-left {
    padding: 50px 40px;
}
.rooftop-left-inner h3 {
    font-size: 22px;
    font-weight: var(--font-weight-600);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.rooftop-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.rooftop-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 8px;
}
.rooftop-list li i {
    font-size: 16px;
}
.rooftop-right {
    position: relative;
    min-height: 320px;
}
.rooftop-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rooftop-main-image {
    height: 100%;
}
.rooftop-inset-image {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-125%);
    width: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.rooftop-inset-image img {
    width: 100%;
    display: block;
}
.rooftop-gallery-section {
    padding: 80px 0 100px;
}

/* Rooftop - We Are Unique section */
.rooftop-unique-section {
    position: relative;
    padding: 110px 0;
    background-image: url('../images/rooftop-solar.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}
.rooftop-unique-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.9) 100%);
    z-index: 0;
}
.rooftop-unique-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}
.rooftop-unique-content .title {
    font-size: 40px;
    margin-bottom: 25px;
    color: #fff;
}
.rooftop-gallery-section .section-header .section-title:after{
    display: none;
}
.rooftop-unique-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
}
.rooftop-unique-btn {
    margin-top: 30px;
    background: #26b33f;
    border-color: #26b33f;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
}
.rooftop-unique-btn:hover {
    background: var(--hover-green);
    border-color: var(--hover-green);
}

.rooftop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.rooftop-gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
.rooftop-gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.rooftop-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}
.rooftop-gallery-item:hover .rooftop-gallery-image-wrapper img {
    transform: scale(1.06);
}
.rooftop-gallery-item:hover .rooftop-gallery-overlay {
    opacity: 1;
}
.rooftop-gallery-icon {
    margin-top: 6px;
    font-size: 16px;
}

@media (max-width: 992px) {
    .rooftop-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .rooftop-layout {
        flex-direction: column;
    }
    .rooftop-left {
        padding: 40px 24px;
    }
    .rooftop-gallery-grid {
        grid-template-columns: 1fr;
    }
}
.contact-form label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-600);
}
.input-icon {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    background: var(--white);
}
.input-icon span {
    width: 48px;
    text-align: center;
    color: var(--text-color);
    font-size: 16px;
}
.input-icon input,
.input-icon textarea {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    background: transparent;
}
.input-icon textarea {
    min-height: 150px;
    resize: vertical;
}
.textarea-icon {
    align-items: flex-start;
}
.input-icon.has-error {
    border-color: #dc3545;
    background-color: #fff5f5;
}
.input-icon input.error,
.input-icon textarea.error {
    color: #dc3545;
}
.error-message {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-success i {
    color: #28a745;
    font-size: 18px;
}
.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.alert-error i {
    color: #dc3545;
    font-size: 18px;
}
.textarea-icon span {
    padding-top: 16px;
}
.contact-submit,
.subscribe-btn {
    width: fit-content;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.quick-support {
    background: #fafafa;
    padding: 90px 0;
}
.quick-support .section-header {
    max-width: 640px;
    margin-bottom: 50px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    font-size: 13px;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.support-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(6, 102, 56, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 20px;
    margin-bottom: 20px;
}
.support-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.support-card p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}
.subscribe-section {
    padding: 90px 0 120px;
}
.subscribe-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.subscribe-text h3 {
    font-size: 42px;
}
.subscribe-text p {
    margin: 5px 0 0;
    font-size: 16px;
}
.subscribe-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
}
.subscribe-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gallery-banner {
    background-image: url('../images/gallery-baner.png');
    background-position: center;
    background-size: cover;
}
.gallery-section {
    padding: 100px 0 120px;
}
.gallery-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.gallery-filter-btn {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-filter-btn.is-active,
.gallery-filter-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item.is-hidden {
    display: none;
}
.gallery-image-wrapper {
    width: 100%;
    padding-top: 65%;
    position: relative;
    overflow: hidden;
}
.gallery-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.8) 100%);
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}
.gallery-item h4 {
    margin: 0;
    font-size: 22px;
}
.gallery-item p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.gallery-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: background 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-icon {
    background: rgba(255,255,255,0.9);
    color: var(--title-color);
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
    padding: 20px;
}
.gallery-lightbox.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.gallery-lightbox-content {
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    position: relative;
}
.gallery-lightbox figure {
    margin: 0;
}
.gallery-lightbox img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}
.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.1);
    font-size: 22px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.lightbox-close:hover {
    background: rgba(0,0,0,0.2);
}
.gallery-lightbox figcaption h4 {
    margin-bottom: 8px;
    font-size: 24px;
}
.gallery-lightbox figcaption p {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
}
body.lightbox-open {
    overflow: hidden;
}
.career-banner {
    background-image: url('../images/careers-banner.png');
}
.career-hero-section {
    padding: 90px 0 60px;
}
.career-hero-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}
.career-hero-content h2 {
    font-size: 46px;
    margin: 15px 0 20px;
    color: var(--green);
}
.career-hero-content p {
    font-size: 18px;
    color: var(--text-color);
}
.career-openings-section h2{
    color: var(--title-color);
}
.career-openings-section .eyebrow, .quick-support .eyebrow{
    color: var(--green);
}
.career-metrics {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.career-metrics strong {
    display: block;
    font-size: 32px;
}
.career-hero-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.career-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.career-hero-card li i {
    color: var(--green);
    margin-right: 8px;
}
.career-culture-section {
    padding: 90px 0;
    background: #fafafa;
}

.career-culture-section .centr-dbl-txt{
    z-index: 0;
}
.centr-dbl-txt{
    left: 0;
    right: 0;
}
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.culture-card {
    background: var(--white);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.culture-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(6, 102, 56, 0.12);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}
.career-openings-section {
    padding: 90px 0;
}
.job-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.job-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    background: var(--white);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.job-card.is-open {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(6, 102, 56, 0.25);
}
.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.job-main-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-card-header h3 {
    margin-bottom: 5px;
    color: var(--title-color);
    font-size: 24px;
}
.job-card-header p {
    margin: 0;
    color: var(--text-color);
}
.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--text-color);
}
.job-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(6, 102, 56, 0.08);
}
.job-apply-btn {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-apply-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
.job-toggle {
    align-self: flex-start;
    border: none;
    background: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-600);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.job-details {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}
.job-details ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.career-cta-section {
    padding: 90px 0 120px;
}
.career-cta-wrapper {
    background: #101820;
    border-radius: 28px;
    padding: 50px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
}
.career-cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.career-cta-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.career-cta-form input {
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
}
.career-cta-form .theme-btn {
    align-self: flex-start;
}
@media (max-width: 992px) {
    .contact-hero-wrapper,
    .contact-form .form-row,
    .support-grid,
    .subscribe-wrapper,
    .subscribe-form,
    .gallery-grid,
    .career-hero-wrapper,
    .culture-grid,
    .career-cta-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form-panel,
    .subscribe-wrapper,
    .gallery-lightbox-content,
    .career-cta-wrapper {
        padding: 35px;
    }
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .career-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 576px) {
    .contact-form-header h2 {
        font-size: 36px;
    }
    .support-card {
        padding: 30px 20px;
    }
    .subscribe-section,
    .gallery-section,
    .career-openings-section,
    .career-cta-section {
        padding: 70px 0 90px;
    }
    .gallery-lightbox-content {
        padding: 25px 20px;
    }
    .career-metrics {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Header & Navigation Mobile Styles */
@media (max-width: 991px) {
    header {
        padding: 15px 0;
    }
    .header-logo img {
        width: 150px;
    }
    header .navbar-nav {
        margin-top: 20px;
        padding: 20px 0;
    }
    header .nav-link {
        padding: 12px 15px !important;
        font-size: 14px;
    }
    /* Hide desktop contact button on mobile */
    .header-contact-desktop {
        display: none !important;
    }
    /* Show contact button in menu on mobile */
    .nav-item-contact-mobile {
        display: block;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(43, 155, 31, 0.2);
    }
    .nav-link-contact {
        padding: 12px 15px !important;
        font-size: 14px;
    }
    /* Dropdown menu adjustments for mobile */
    header .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    header .nav-item.dropdown.show > .dropdown-menu {
        display: block !important;
    }
    header .dropdown-submenu > .dropdown-menu {
        position: static !important;
        margin-left: 20px;
        display: none;
    }
    header .dropdown-submenu.show > .dropdown-menu {
        display: block !important;
    }
    /* Remove hover effects on mobile - use click/tap only */
    header .nav-item.dropdown:hover > .dropdown-menu {
        display: none;
    }
    header .dropdown-submenu:hover > .dropdown-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-logo img {
        width: 130px;
    }
    header .nav-link {
        font-size: 13px;
        padding: 10px 15px !important;
    }
}

/* Page Banner Mobile */
@media (max-width: 768px) {
    .page-banner-section {
        min-height: 300px;
        padding: 120px 0 80px;
    }
    .page-banner-content h1 {
        font-size: 32px;
    }
    .page-banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-banner-section {
        min-height: 250px;
        padding: 100px 0 60px;
    }
    .page-banner-content h1 {
        font-size: 28px;
    }
    .page-banner-content p {
        font-size: 14px;
    }
}

/* Vision & Mission Section Mobile */
@media (max-width: 992px) {
    .vision-mission-container {
        flex-direction: column;
        gap: 20px;
    }
    .vm-card {
        padding: 35px 25px;
    }
    .vm-card:hover {
        flex: 1;
        transform: translateY(-5px);
    }
    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .vm-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    .vm-card {
        padding: 30px 20px;
    }
    .vm-card h3 {
        font-size: 22px;
    }
    .vm-card p {
        font-size: 15px;
    }
    .vm-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Vision & Mission Highlight Mobile */
@media (max-width: 576px) {
    .vision-mission-highlight-section {
        padding: 50px 0;
    }
    .vmh-content-card {
        padding: 35px 25px;
    }
    .vmh-title {
        font-size: 28px;
    }
    .vmh-description {
        font-size: 15px;
    }
    .vmh-feature-list li {
        font-size: 15px;
    }
    .vmh-image-overlay {
        padding: 30px 24px 24px;
    }
    .vmh-image-label {
        font-size: 18px;
    }
}

/* Client Logos Mobile */
@media (max-width: 576px) {
    .client-logos-section {
        padding: 50px 0;
    }
    .client-logos-row {
        gap: 15px;
        padding: 15px 0;
    }
    .client-logo-item {
        width: 120px;
        height: 70px;
        padding: 10px 15px;
    }
    .client-logos-row.row-1 {
        margin-bottom: 20px;
    }
}

/* Management Page Mobile */
@media (max-width: 576px) {
    .management-section {
        padding: 60px 0 70px;
    }
    .management-photo {
        flex-direction: column;
        text-align: center;
    }
    .management-photo img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .management-info {
        text-align: center;
    }
    .management-info h4 {
        font-size: 18px;
    }
    .management-detail {
        padding: 25px 20px;
    }
    .detail-content {
        gap: 20px;
    }
    .detail-text h4 {
        font-size: 22px;
    }
    .detail-text p {
        font-size: 15px;
    }
}

/* Wind & Solar Page Mobile */
@media (max-width: 768px) {
    .ws-services-section {
        padding: 60px 0 80px;
    }
    .ws-sidebar {
        margin-bottom: 30px;
        padding: 25px 18px;
    }
    .ws-sidebar-title {
        font-size: 18px;
    }
    .ws-tab-link {
        padding: 14px 16px;
        font-size: 15px;
    }
    .ws-tab-link .ws-tab-icon {
        width: 28px;
        height: 28px;
    }
    .ws-panel-header h2 {
        font-size: 24px;
    }
    .ws-panel-text p {
        font-size: 14px;
    }
    .ws-panel-features li {
        font-size: 13px;
    }
    .ws-consult-card {
        padding: 28px 20px;
    }
    .ws-consult-card h3 {
        font-size: 18px;
    }
    .ws-consult-number {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .ws-sidebar {
        padding: 20px 15px;
    }
    .ws-tab-link {
        padding: 12px 14px;
        font-size: 14px;
    }
    .ws-panels {
        padding: 20px 15px 25px;
    }
    .ws-panel-header h2 {
        font-size: 22px;
    }
    .ws-consult-card {
        padding: 24px 18px;
    }
    .ws-consult-body {
        flex-direction: column;
        gap: 12px;
    }
}

/* Rooftop Solar Page Mobile */
@media (max-width: 576px) {
    .rooftop-intro-section {
        padding: 60px 0 30px;
    }
    .rooftop-intro h2 {
        font-size: 26px;
    }
    .rooftop-intro p {
        font-size: 15px;
    }
    .rooftop-layout-section {
        padding: 30px 0 60px;
    }
    .rooftop-left {
        padding: 35px 20px;
    }
    .rooftop-left-inner h3 {
        font-size: 20px;
    }
    .rooftop-list li {
        font-size: 15px;
    }
    .rooftop-right {
        min-height: 250px;
    }
    .rooftop-inset-image {
        width: 70%;
        bottom: 15px;
    }
    .rooftop-gallery-section {
        padding: 60px 0 80px;
    }
}

/* Projects Page Mobile */
@media (max-width: 576px) {
    .projects-section {
        padding: 60px 0 80px;
    }
    .projects-filters {
        flex-wrap: wrap;
        gap: 10px;
    }
    .projects-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .project-card h3 {
        font-size: 20px;
    }
    .project-card p {
        font-size: 14px;
    }
}

/* Gallery Page Mobile */
@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0 80px;
    }
    .gallery-filters {
        flex-wrap: wrap;
        gap: 10px;
    }
    .gallery-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-lightbox-content {
        padding: 20px 15px;
        margin: 10px;
    }
    .gallery-lightbox-content img {
        max-height: 60vh;
    }
}

/* Contact Page Mobile */
@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0 70px;
    }
    .contact-map iframe {
        min-height: 300px;
        border-radius: 16px;
    }
    .contact-form-panel {
        padding: 35px 20px;
    }
    .contact-form-header h2 {
        font-size: 32px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .quick-support {
        padding: 60px 0 70px;
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .support-card {
        padding: 25px 20px;
    }
    .subscribe-section {
        padding: 60px 0 70px;
    }
    .subscribe-form {
        flex-direction: column;
    }
    .subscribe-form input {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Careers Page Mobile */
@media (max-width: 576px) {
    .career-hero-section {
        padding: 60px 0 70px;
    }
    .career-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .career-culture-section {
        padding: 60px 0 70px;
    }
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .career-openings-section {
        padding: 60px 0 70px;
    }
    .job-card {
        padding: 20px;
    }
    .job-main-info h3 {
        font-size: 20px;
    }
    .job-tags {
        flex-wrap: wrap;
        gap: 8px;
    }
    .job-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }
    .career-cta-section {
        padding: 60px 0 70px;
    }
    .career-cta-wrapper {
        padding: 35px 20px;
    }
}

/* Certifications Page Mobile */
@media (max-width: 576px) {
    .certifications-section {
        padding: 60px 0 80px;
    }
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .certificate-info h4 {
        font-size: 20px;
    }
    .certificate-info p {
        font-size: 14px;
    }
}

/* Our Landscapes Page Mobile */
@media (max-width: 576px) {
    .landscapes-section {
        padding: 60px 0 80px;
    }
    .landscapes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .landscape-card {
        padding: 25px 20px;
    }
    .landscape-content h3 {
        font-size: 22px;
    }
    .landscape-features li {
        font-size: 14px;
    }
    .landscape-readmore-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Home Page Sections Mobile */
@media (max-width: 768px) {
    .home-about-section,
    .home-landscapes-section,
    .why-choose-section,
    .works-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .why-title,
    .works-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .home-about-section,
    .home-landscapes-section,
    .why-choose-section,
    .works-section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .why-title,
    .works-title {
        font-size: 28px;
    }
    .why-outline-text,
    .works-outline-text {
        font-size: 80px;
    }
    .why-feature-card {
        padding: 25px 20px;
    }
    .why-feature-card h4 {
        font-size: 20px;
    }
    .works-item {
        padding: 25px 20px;
    }
    .works-item h4 {
        font-size: 20px;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    footer {
        padding: 50px 0 30px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-section h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 25px;
    }
}

/* General Mobile Improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2,
    .section-header .title {
        font-size: 32px;
    }
    .section-header p {
        font-size: 15px;
    }
    .theme-btn,
    .btn-style-one {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .section-header h2,
    .section-header .title {
        font-size: 28px;
    }
    .section-header p {
        font-size: 14px;
    }
    .theme-btn,
    .btn-style-one {
        padding: 12px 20px;
        font-size: 13px;
    }
    /* Improve touch targets */
    button,
    .btn,
    a.btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Tablet Specific Adjustments (768px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .landscapes-grid,
    .projects-grid,
    .gallery-grid,
    .rooftop-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .management-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vision-mission-container {
        flex-direction: row;
    }
    .vm-card {
        padding: 40px 30px;
    }
    .vm-card h3 {
        font-size: 24px;
    }
    .contact-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-map {
        order: 2;
    }
    .contact-form-panel {
        order: 1;
    }
}

/* Landscape Orientation Adjustments */
@media (max-width: 992px) and (orientation: landscape) {
    .banner {
        height: 80vh;
    }
    .page-banner-section {
        min-height: 400px;
    }
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    .header-logo img {
        width: 110px;
    }
    .banner-content h1 {
        font-size: 1.3rem;
    }
    .banner-content p {
        font-size: 0.85rem;
    }
    .section-header h2,
    .section-header .title {
        font-size: 24px;
    }
    .vmh-title {
        font-size: 24px;
    }
    .vm-card h3 {
        font-size: 20px;
    }
    .ws-panel-header h2 {
        font-size: 20px;
    }
    .contact-form-header h2 {
        font-size: 28px;
    }
    .page-banner-content h1 {
        font-size: 24px;
    }
}
