@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== GLOBAL STYLES ===== */
:root {
    /* Color Palette */
    --primary: #CB7D2C;
    /* Bootstrap primary blue */
    --primary-dark: #BC5623;
    --secondary: #6c757d;
    /* Bootstrap secondary gray */
    --light: #f8f9fa;
	--form-light: #767676;
    /* Bootstrap light */
    --dark: #252525;
    /* Bootstrap dark */
    --white: #ffffff;
    --black: #000000;
	--inner-bg: #1C1C1C;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 3rem;

    /* Typography */
    --font-main: "Urbanist", sans-serif;
    --font-alt: Georgia, 'Times New Roman', serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-xxl: 1.5rem;
}

/* ===== BASE RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ===== UTILITY CLASSES ===== */
/* .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
} */

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-light {
    background-color: var(--light);
}

/* ===== BUTTONS ===== */
.btn {
    font-size: 14px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 100px;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-primary-light {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}
.btn-primary-light:hover{
    background-color: var(--dark);
     color: var(--white);
    border-color: var(--dark);
}
.common-gap {
    padding: 80px 0;
    background-color: var(--dark);
}
.section-title-hr {
    display: flex;
    align-items: top;
}
.section-conten{
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}
.section-subtitle {
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 5px;
    font-size: 14px;
    margin-bottom: 0px;
    display: inline-block;
}
.section-title {
    text-transform: uppercase;
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-title span {
    font-weight: 900;
	color: var(--primary);
}
.section-conten p{
	color: var(--white);
}
.content p, .description{
    font-size: 14px;
    color: var(--white);
}
/* Common style for both arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: var(--dark) ;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary);
}

/* Positioning (optional tweaks) */
.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

/* Hide default arrow icons to use custom ones (optional) */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px; /* default is 44px, which is too large */
}

/* ===== HEADER OVERRIDES ===== */
/* (Will work with Bootstrap navbar) */
.site-header .navbar {
    background-color: var(--inner-bg);  /*#0B0B0B*/
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

/* Logo + Brand */
.navbar-brand {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.navbar-brand .logo {
    width: 294px;
    height: auto;
}

.navbar-nav .nav-link {
    font-size: 16px;
    color: var(--white);
    margin-right: 1rem;
    font-weight: 500;
    padding: 0rem 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav li.current-menu-item .nav-link {
    color: var(--primary);
}

.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
}

/* Dropdown menu */
.dropdown-menu {
    background-color: #111;
    border: none;
    padding: 0;
}

.dropdown-menu .dropdown-item, .dropdown-menu li{
    color: #fff;
    padding: 0 20px;
}

.dropdown-menu .dropdown-item:hover, .dropdown-menu li:hover {
    background-color: var(--dark);
    color: var(--primary);
}

.dropdown-toggle::after {
    content: "\f107";
    font-size: 12px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    vertical-align: unset;
    margin-left: 0.5em;
    display: inline-block;
    background: unset;
    border: unset;
}
.dropdown-toggle[aria-expanded="true"]::after{
	content: "\f106";
}
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: var(--space-sm) 0;
}

/* Large desktops (1600px+) */
@media (min-width: 1400px) {
    .navbar-brand .logo {
        width: 394px;
        height: auto;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1050;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1;
    }

    .navbar-backdrop.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-toggler[aria-expanded="true"] .default-icon {
        display: none;
    }

    .navbar-toggler[aria-expanded="true"] .active-icon {
        display: inline-block;
    }

    .default-icon {
        display: inline-block;
    }

    .active-icon {
        display: none;
    }
	.dropdown-menu, .dropdown-menu .dropdown-item:hover, .dropdown-menu li:hover {
		background-color: transparent;
	}
	.dropdown-toggle::after {
		content: "\2b";
	}
	.dropdown-toggle[aria-expanded="true"]::after{
		content: "\f068";
	}
	.navbar-nav .nav-link{
		padding: .5rem 1.5rem;
    	background: var(--light);
	}
}

/* loader */
#splash-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.5s ease;
}
#splash-screen.hidden {
	opacity: 0;
	pointer-events: none;
}
.splash-inner{
	max-width: 280px;
}
.splash-inner img{
	width: 100%;
}
.splash-inner:after{
	content: '';
	height: 460px;
	width: 460px;
	border-radius: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.splash-inner:before{
	content: '';
	height: 1140px;
	width: 1140px;
	border-radius: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* BAnner */
.mySwiperBanner .banner {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* padding-left: 100px; */
    color: white;
}

.mySwiperBanner .banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) -15.78%, rgba(0, 0, 0, 0.455975) 32.32%, rgba(0, 0, 0, 0.6) 76.74%);
}

.mySwiperBanner .banner .content {
    position: relative;
    z-index: 1;
    max-width: 550px;
}

.mySwiperBanner .banner .content h1 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 400;
}
.mySwiperBanner .banner .content h1 span{
    font-weight: 900;
}
.mySwiperBanner .banner .content p {
    margin: 20px 0;
    font-size: 14px;
}
.mySwiperBanner .swiper-button-next, .mySwiperBanner .swiper-button-prev{
    right: 10%;
    bottom:50px;
    top: unset;
}
.mySwiperBanner .swiper-button-prev{
    right: 15%;
    left: unset;
}

/* About */
.about-section{
    background: linear-gradient(360deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0) 76.58%), url(../img/banner/about-new.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.about-inner-section{
	background: url(../img/banner/about-inner-banner.png) no-repeat;
	background-size: 100% 100%;
	margin-bottom: -1px;
}
.about-section {
    margin: 0 auto;
}
.image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.image-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.image-grid img:hover {
    transform: scale(1.02);
}
.main-image {
    grid-column: span 2;
    height: 220px !important;
    width: 90% !important;
    margin-left: auto;
}
.secondary-image-two {
    height: 350px !important;
}
.secondary-image-one{
    height: 300px;
}
.about-content {
    flex: 1;
    padding-left: 30px;
}
.about-content p{
	color: var(--white);
}

/* Service */
.services-section{
/*     background: linear-gradient(360deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0) 76.58%), url(../img/banner/solution.png);
    background-repeat: no-repeat; 
    background-size: cover; */
	background: var(--black);
    position: relative;
}
.services-section .nav-tabs {
    gap: 30px;
    border: 0;
}
.feature-card {
    background-color: var(--dark);
    border-radius: 12px;
    padding: 20px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    align-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.feature-card.active {
    background-color: var(--primary); /* Unique background for Residential */
    color: var(--text-color-dark); /* Darker text for the orange card */
}

.feature-card .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    border-radius: 50%;
    padding: 8px;
}
.feature-card.active .card-icon{
	background: var(--white);
}
.feature-card  .card-icon img {
/*     width: 100%;
    height: 100%; */
    object-fit: contain;
	filter: brightness(0) invert(1);
	transition: all 0.3s;
}
.feature-card.active  .card-icon img {
	filter: none;
}
.feature-card .card-content{
    text-align: left;
}
.feature-card .card-content .card-title {
    color: var(--white);
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.feature-card .card-content  .card-description {
    font-size: 0.9em;
    line-height: 1.5;
    color:var(--white);
    margin-bottom: 0;
	width: 227px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tab-content .service-img-box{
    position: relative;
}
.tab-content .service-img-box img{
    width: 100%;
    border-radius: 22px;

}
.tab-content .service-img-box img::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(360deg, rgba(34, 34, 34, 0.9) 0%, rgba(34, 34, 34, 0) 76.58%);
}
.tab-content .service-img-box .service-img-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 30px 50px 30px;
}
.tab-content .service-img-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tab-content .service-img-box h5{
    font-size: 28px;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card-container {
        flex-direction: column;
        align-items: center;
    }
}

/*  */
.eneargy-section{
    background: linear-gradient(360deg, rgba(34, 34, 34, 0.9) 0%, rgb(34 34 34 / 78%) 76.58%), url(../img/banner/energy.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.eneargy-section::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -95px;
    bottom: 0;
    background: linear-gradient(360deg, #00000000 0% 0%, #00000000 76.58%), url(../img/logo/icon.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 480px;
    opacity: 0.03;
    filter: grayscale(1);
}
.eneargy-section-main{
    position: relative;
    margin-top: 30px;
}
.eneargy-section-list{
    background-color: var(--black);
    padding: 30px;
    border-radius: 22px;
    max-width: 350px;
    position: absolute;
}
.eneargy-section-list.left{
    left: 0px;
    top: 40px;
}
.eneargy-section-list.right{
    right: 0px;
    bottom: 40px;
}
.eneargy-section-list ul{
    padding: 0;
    margin: 0;
}
.eneargy-section-list ul li{
    font-size: 14px;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--white);
}
.eneargy-section-list ul li:before{
    content: '\f00c';
    font-family: 'FontAwesome';
    background: var(--primary);
    border-radius: 100%;
    font-size: 16px;
    padding: 6px;
    color: var(--black);
    max-width: 30px;
    max-height: 25px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.eneargy-section-list h2{
    font-size: 20px;
    color: var(--white);
	text-transform: uppercase;
}
.eneargy-section-main .eneargy-section-img img{
    border-radius: 22px;
    min-height: 650px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Project */
.project-section{
    position: relative;
    background: linear-gradient(360deg, #00000000 0% 0%, #00000000 76.58%), url(../img/banner/project.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* .project-section::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(360deg, #00000000 0% 0%, #00000000 76.58%), url(../img/logo/icon.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 480px;
    opacity: 0.03;
    filter: grayscale(1);
} */
/* Basic styling for the grid container */
.project-image-grid {
    display: grid;
    grid-template-rows: auto auto; 
    gap: 20px; 
    width: 100%; 
    margin: 20px auto; 
    padding: 10px; /* 
    box-sizing: border-box; /* Include padding in element's total width and height */
}
.project-image-grid .project-image-box {
    position: relative;
    width: 100%; 
    height: 100%;
	transition: all 0.3s;
}
.project-image-grid .project-image-box:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0, 0), rgba(0,0,0, 0));
	transition: all 0.3s;
}
.project-image-grid .project-image-box:hover:before{
    background: linear-gradient(to bottom, rgba(0,0,0, 0), rgba(0,0,0, 0.9));
	transition: all 0.3s;
}
.project-image-grid .project-image-box img{
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 22px; 
    display: block;
}
.project-image-grid .project-image-box .project-box-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: none;
    cursor: pointer;
}
.project-image-box:hover .project-box-content {
    display: flex;
	align-items: center;
    justify-content: space-between;
	transition: all 0.3s;
    gap: 20px
}
.project-image-box .content{
	width: 85%;
}
.project-image-grid .project-image-box .project-box-content h5{
    font-size: 18px;
    color: var(--white);
}
.project-image-grid .project-image-box .project-box-content p{
    color: var(--white);
    margin: 0;
} 
.project-image-grid .project-image-box .project-box-content .btn{
    padding: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: rotate(330deg);
} 

.project-image-grid .first-image {
    grid-column: 1 / span 3; 
    grid-row: 1; 
}

.project-image-grid .first-image-two {
    grid-column: 4 / span 3; 
    grid-row: 1; 
}

.project-image-grid .project-image-box:nth-child(3) {
    grid-column: 1 / span 2; 
    grid-row: 2; 
}

.project-image-grid .project-image-box:nth-child(4) {
    grid-column: 3 / span 2; 
    grid-row: 2; 
}

.project-image-grid .project-image-box:nth-child(5) {
    grid-column: 5 / span 2; 
    grid-row: 2; 
}
.myProjects{
	padding: 80px 0;
}
.myProjects .swiper-slide{
	position: relative;
	transition: all 0.5s;
}
.myProjects .swiper-slide:before{
	content: '';
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.8));
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
}
.myProjects .swiper-slide img{
	width: 100%;
}
.myProjects .swiper-slide.swiper-slide-next:before{
	border-radius: 0 0 30px 30px;
}
.myProjects .swiper-slide.swiper-slide-next{
	transform: scale(1.3);
	z-index: 1;
	overflow: hidden;
	transition: all 0.5s;
}
.myProjects .swiper-slide.swiper-slide-next img{
	border-radius: 30px;
}
.projectslider-text{
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: var(--white);
}
.projectslider-text p{
	font-size: var(--text-sm);
}
.slider-arrows{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.project-section .swiper-button-next, .project-section .swiper-button-prev{
    position: static;
	margin: 0;
    background-color: var(--primary);
}
.hr{
	background: var(--white);
	height: 1px;
	width: 52%;
    opacity: 0.2;
    margin: 0 30px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .project-image-grid {
        grid-template-columns: 1fr; /* On smaller screens, stack all images in a single column */
        grid-template-rows: auto; /* Rows will adjust automatically */
        gap: 10px; /* Reduce gap for smaller screens */
    }

    /* Reset grid-column and grid-row for all images to allow them to stack naturally */
    .project-image-grid .main-image,
    .project-image-grid .secondary-image-one,
    .project-image-grid img:nth-child(3),
    .project-image-grid img:nth-child(4),
    .project-image-grid img:nth-child(5) {
        grid-column: auto; /* Remove explicit column spanning */
        grid-row: auto; /* Remove explicit row placement */
    }
}


/*  */
.testimonials-section {
    padding: 100px 0;
    background:  url(../img/banner/testimoni_two.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.testimonials-section .mytestimoni {
    padding-bottom: 65px;
}
.testimoni-box{
    position: relative;
    background-color: var(--dark);
    padding: 73px 30px 30px;
    border-radius: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.testimoni-box .description::before{
    content: '\f10e';
    font-family: 'FontAwesome';
    transform: scaleX(-1);
    position: absolute;
    top: 0;
    font-size: 50px;
    color: var(--primary);
}
.testimoni-box .author-box{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-content: center;
    align-items: center;
    margin-top: 25px;
}
.testimoni-box .author-box img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
}
.testimoni-box .author-box .author-box-content{
    width: 100%;
    color: var(--white);
}
.testimoni-box .author-box .author-box-content h6{
    margin-bottom: 6px;
}
.testimoni-box .author-box .author-box-content p{
    margin: 0;
    font-size: 12px;
}
.testimonials-section .swiper-button-next, .testimonials-section .swiper-button-prev{
    bottom: 0px;
    top: unset;
    background-color: var(--primary);
}
.testimonials-section .swiper-button-next{
    left: 60px;
    right: unset;
}
.testimonials-section  .swiper-button-prev {
    left: 0;
}


/* CTA */
.cta-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(360deg, #6c3700b5 0%, #6c3700cc 76.58%), url(../img/banner/cta.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.cta-section .section-title span{
	color: var( --white);
}
.cta-section::before, .cta-section::after{
    content: '';
    position: absolute;
    left: -16%;
    right: 0;
    top: -44px;
    bottom: 0;
    background: linear-gradient(360deg, #00000000 0% 0%, #00000000 76.58%), url(../img/logo/icon.png);
    /* background-position: left center; */
    background-repeat: no-repeat;
    background-size: 550px;
    opacity: 0.03;
    filter: grayscale(1);
}
.cta-section::after{
    left: 75%;
    right: 0px;
}
/*  */
.footer{
    position: relative;
	background: linear-gradient(360deg, #000000a8 0%, #000000c9 76.58%), url(../img/banner/footer-new.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* padding: 80px 0; */
}
.footer-top{
    padding: 80px 0;
	position: relative;
	z-index: 1;
}
/* .footer::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(360deg, #00000000 0% 0%, #00000000 76.58%), url(../img/logo/icon.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 480px;
    opacity: 0.03;
    filter: grayscale(1);
	z-index: 0;
} */
.footer .footer-logo img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.footer  .ft-title{
    text-transform: uppercase;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
}
.footer .ft-link {
    padding: 0;
}
.footer .ft-link li {
    margin-bottom: 15px;
}
.footer .ft-link li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.footer .ft-link li span {
    font-size: 18px;
    color: var(--white);
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: var(--primary);
}
.footer .ft-link li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}
.footer .ft-link li p{
    font-size: 14px;
	margin-bottom: 0;
}
.social-link {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.social-link a {
    min-width: 40px;
    min-height: 40px;
}

.social-link a {
    width: 40px;
    height: 40px;
    color: var(--white);
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1;
    background: var(--primary);
    border-radius: 100%;
    font-size: 14px;
}
.footer-bottom{
/*     background-color: var(--dark); */
    border-top: 1px solid #ffffff62;
    padding: 15px 0;
	position: relative;
	z-index: 1;
}
.footer-bottom p , .footer-bottom a{
    display: flex;
    color: var(--white);
    gap: 20px;
    margin: 0;
}
.footer-bottom .copyright{
    gap: 0;
    display: contents;
}

/* about page */
.banner-innerpg{
	position: relative;
	text-align: center;
}
.banner-innerpg img{
	width: 100%;
    min-height: 220px;
    object-fit: cover;
}
.banner-innerpg .content{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}
.banner-innerpg .content h1 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 400;
	color: var(--white);
	text-transform: uppercase;
}
.banner-innerpg .content h1 span{
    font-weight: 900;
}
.mission-section{
	background: var(--inner-bg);
	position: relative;
}
.mission-image img{
	width: 100%;
	border-radius: 30px;
}
.mission-section .swiper-button-next, .mission-section .swiper-button-prev{
	background: var(--primary);
}
.mission-section .swiper-button-next:hover, .mission-section .swiper-button-prev:hover{
	background: var(--primary-dark);
}

/* contact-page */
.contact-section{
	background: url(../img/contact/contact-form.png) no-repeat;
	background-size: cover;
}
.contact-form .form-label{
	color: var(--white);
	font-size: var(--text-base);
	line-height: 32px;
}
.contact-form .form-control, .contact-form .form-select{
	background: var(--black);
	height: 60px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 100px;
	color: var(--white);
	padding: 0 20px;
}
.contact-form .form-control::placeholder, .contact-form .form-select option{
	color: var(--form-light);
}
.contact-form .form-select{
	background: var(--black) url(../img/contact/down-arrow.png) no-repeat;
	background-position: 99% center;
}
.contact-form textarea.form-control{
	min-height: 182px;
	border-radius: 20px;
	padding-top: 10px;
}
.contact-information{
	background: rgba(28, 28, 28, 1);
}
.contact-details{
	margin: 100px 0 0;
}
.info-detail{
	background: var(--dark);
	border-radius: 30px;
	padding: 65px 30px 40px;
	text-align: center;
	position: relative;
	min-height: 201px;
}
.info-detail h5{
	color: var(--white);
}
.info-detail p{
	color: var(--form-light);
	margin: 0;
}
.info-icon{
	position: absolute;
	top: -30%;
	left: 50%;
    transform: translateX(-50%);
	height: 105px;
	width: 105px;
	border-radius: 100%;
	border: 10px solid #1C1C1C;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--black);
}
.info-icon i{
	color: var(--white);
	font-size: 2.5rem;
}

/* resources */
.faq-section{
	background: rgba(28, 28, 28, 1);
}
.faq-section .accordion-item:last-of-type .accordion-button.collapsed{
	border-radius: 30px;
}
.faq-section .accordion-button.collapsed{
	border-radius: 30px !important;
}
.faq-section .accordion-button, .faq-section .accordion-item:first-of-type .accordion-button{
	border-radius: 30px 30px 0 0;
}
.faq-section .accordion-body{
	border-radius: 0 0 30px 30px;
}
.faq-section .accordion-body, .faq-section .accordion-button, .faq-section .accordion-button:not(.collapsed){
	background: var(--dark);
	color: var(--white);
}
.faq-section .accordion-item:first-of-type, .faq-section .accordion-item{
	border: none;
	background: transparent;
}
.faq-section .accordion-button:not(.collapsed){
	box-shadow: none;
}
.faq-section .accordion-item{
	margin-bottom: 15px;
}
.faq-section .accordion-button:not(.collapsed)::after, .faq-section .accordion-button::after{
	filter: brightness(0) invert(1);
}
.faq-section .accordion-button {
    text-transform: uppercase;
    font-weight: bold;
	font-size: var(--text-lg);
}
.info-section{
	background: var(--inner-bg);
}
.info-inner{
	padding-right: 5rem;
}
.info-text h5, .info-text ul li, .info-text p{
	color: var(--white);
}
.info-text ul li, .info-text p{
	font-size: var(--text-sm);
	font-weight: 300;
}
.info-text ul li{
	position: relative;
	list-style: none;
	margin-bottom: 15px;
	padding-left: 5px;
}
.info-text ul li:before{
    content: '\f00c';
    font-family: 'FontAwesome';
    background: var(--primary);
    border-radius: 100%;
    font-size: 16px;
    padding: 6px;
    color: var(--black);
    max-width: 30px;
    max-height: 25px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	position: absolute;
	left: -30px;
	top: -1px;
}
.instruction-section{
	background: var(--black);
}
.instruction-section .card{
	background: var(--dark);
	border-radius: 30px;
	color: var(--white);
	padding: 20px 30px;
	margin-bottom: 1.5rem;
}
.instruction-section .card p{
	margin: 0;
}
.instruction-section .card h5{
	position: relative;
	margin-left: 30px;
	padding-left: 10px;
}
.instruction-section .card h5:before{
    content: '\f00c';
    font-family: 'FontAwesome';
    background: var(--primary);
    border-radius: 100%;
    font-size: 16px;
    padding: 6px;
    color: var(--black);
    max-width: 30px;
    max-height: 25px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	position: absolute;
	left: -30px;
	top: -1px;
}
.farms .section-title{
	max-width: 85%;
}

/* gallery page */
.project-pg{
	background: var(--inner-bg);
}
.project-box-link{
	position: relative;
}
.project-box-link:before{
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
.project-box-content{
	position: absolute;
	padding: 0 20px 15px;
    color: var(--white);
	top: 100%;
	pointer-events: none;
	opacity: 0;
	transition: all 0.3s;
}
.project-image-box:hover .project-box-content{
	top: 60%;
	opacity: 1;
}
.project-box-content p{
	margin: 0;
}
.gallery-top-section{
	background: var(--inner-bg);
}
.gallery-top-inn{
	position: relative;
	border-radius: 30px;
}
.gallery-top-inn img{
	width: 100%;
}
.gallery-top-text{
	position: absolute;
	width: 40%;
	top: 15px;
	bottom: 15px;
	left: 15px;
	background: rgba(0,0,0,0.55);
	border-radius: 30px;
	color: var(--white);
	padding: 40px 30px;
}
.gallery-top-text h2{
	text-transform: uppercase;
}

/* before/after */
.before-after-section{
	background: var(--dark);
	position: relative;
}
.before-after-section .swiper-slide {
  display: grid;
  place-items: center;
  min-height: 100vh;
}
.slidecontainer {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50%;
}

.image-container {
  width: 100%;
  height: 100%;
/*   max-width: 100%;
  max-height: 80vh; 
  aspect-ratio: 1/1; */
	
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  filter: grayscale(100%)
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  /* for Firefox */
  width: 100%;
  height: 100%;
}

.slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.slider-line {
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #fff;
  /* z-index: 10; */
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: .5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

.beforeAfter-nav{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 40px 0 0;
}
.before-after-section .swiper-button-prev, .before-after-section .swiper-button-next{
	position: static;
	background-color: var(--primary);
}
.before-after-section .swiper-button-prev:hover, .before-after-section .swiper-button-next:hover{
	background-color: var(--primary-dark);
}
/* .before-after-section .swiper-button-prev{
	left: 45%;
}
.before-after-section .swiper-button-next{
	right: 45%;
} */

/* also like products */
.alsolike-section{
	background: var(--inner-bg);
}
.alsolike-section img {
  display: block;
  max-width: 100%;
}
.myAlsolike{
	padding: 40px 0;
}
.myAlsolike .swiper-slide img{
	width: 100%;
	border-radius: 15px;
}
.myAlsolike .swiper-slide{
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
}
.myAlsolike .swiper-slide:before{
	content: '';
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.8));
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	border-radius: 15px;
}
.myAlsolike .swiper-slide.swiper-slide-next + .swiper-slide{
	transform: scale(1.15);
	z-index: 1;
	overflow: hidden;
	transition: all 0.3s;
}
.alsoLike-text{
	color: var(--white);
	position: absolute;
	top: 90%;
	left: 0;
	right: 0;
	width: 100%;
	height: 40px;
	padding: 0 20px 20px;
	transition: all 0.3s;
}
.myAlsolike .swiper-slide:hover .alsoLike-text, 
.myAlsolike .swiper-slide.swiper-slide-next + .swiper-slide .alsoLike-text{
	height: 100%;
	top: 58%;
	transition: all 0.3s;
}
.alsoLike-text p{
	margin-bottom: 0;
}
.project-box-content .btn.btn-primary, .alsoLike-text .btn.btn-primary{
	height: 50px !important;
    width: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 0;
	transform: rotate(-45deg);
}
.alsoLike-text .btn.btn-primary{
	float: right;
	margin-top: 15px;
}

.map-sec iframe{
	width: 100%;
	height: 700px;
	border-radius: 30px;
}


/* 404 error */
.error-pg form input{
	width: 50%;
	height: 42px;
	padding: 0 10px;
	border-radius: 100px;
	background: var(--black);
	border: 1px solid var(--secondary);
	color: var(--white);
}
.error-pg.about-inner-section{
	color: var(--white);
}



/* responsive */
@media only screen and (max-width: 1199px){
	.navbar-nav .nav-link {
		margin-right: .5rem;
	}
	.feature-card{
		padding: 10px;
	}
	.gallery-top-text{
		overflow-y: scroll;
	}
}
@media only screen and (max-width: 991px){
	.mySwiperBanner .swiper-button-prev{
		margin-right: 15px;
	}
	.navbar-nav .nav-link {
		color: var(--primary);
	}
	.navbar-toggler{
		background-color: var(--primary);
	}
	.default-icon, .active-icon{
		color: var(--white);
	}
	.navbar-nav .nav-link {
		color: var(--primary);
	}
	.navbar-nav .nav-item{
		margin-bottom: 5px;
	}
	.nav-link.dropdown-toggle{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
/* 	.submenu-icon{
		color: var(--primary);
		border: 0;
		background: transparent;
        font-size: 22px;
		display: inline-block;
		margin-left: auto;
	} */
	.info-detail {
		padding: 65px 10px 30px;
		margin-bottom: 75px;
	}
	.contact-details .col-md-4:nth-child(3) .info-detail{
		margin-bottom: 0;
	}
	.info-inner {
		padding-right: 0;
	}
	.services-section .tab-content{
		margin-top: 30px;
	}
	.gallery-top-text {
		width: calc(100% - 30px);
		overflow: scroll;
	}
	.myAlsolike .swiper-slide.swiper-slide-next + .swiper-slide {
		transform: scale(1);
	}
	.project-box-content {
		padding: 0 10px 10px;
	}
	.project-box-content .btn.btn-primary, .alsoLike-text .btn.btn-primary{
		height: 40px !important;
		width: 40px !important;
	}
	.alsoLike-text{
    	padding: 0 10px 10px;
	}
	.myAlsolike .swiper-slide:hover .alsoLike-text, .myAlsolike .swiper-slide.swiper-slide-next + .swiper-slide .alsoLike-text {
		top: 40%;
	}
}

@media only screen and (max-width: 768px){
	.splash-inner{
		max-width: 180px;
	}
	.splash-inner:after{
		height: 260px;
		width: 260px;
	}
	.splash-inner:before {
    	height: 640px;
		width: 640px;
	}
	.mySwiperBanner .banner .content h1 {
    	font-size: 32px;
	}
	.mySwiperBanner .swiper-button-prev{
		margin-right: 45px;
	}
	.section-title {
		font-size: 1.5rem;
	}
	.common-gap, .footer-top {
    	padding: 40px 0;
	}
	.about-content{
		padding-left: 0;
	}
	.eneargy-section-list{
		position: static;
	}
	.eneargy-section-main{
		margin: 30px 10px 0;
	}
	.eneargy-section-img{
		padding: 30px 0;
	}
	.eneargy-section-list {
		padding: 15px;
	}
	.tab-content .service-img-box h5 {
    	font-size: 22px;
	}
	.myProjects {
		padding: 20px 0;
	}
	.myProjects .swiper-slide.swiper-slide-next{
		transform: scale(1);
	}
	.feature-card .card-content .card-description{
		width: 210px;
	}
	.mission-section{
		padding-bottom: 80px;
	}
	.swiper-button-prev {
		left: 35%;
	}
	.swiper-button-next {
		right: 35%;
	}
	.mission-section .swiper-button-next, .mission-section .swiper-button-prev{
		top: 94%;
	}
	.myAlsolike .swiper-slide.swiper-slide-next + .swiper-slide{
		transform: scale(1);
	}
	.error-pg.about-inner-section h2{
		font-size: 1.5rem;
	}
	.gallery-top-text h2 {
		font-size: 1.5rem;
	}
	.before-after-section .swiper-slide {
    	min-height: 80vh;
	}
	.footer .ft-title {
    	margin-bottom: 20px;
	}
}

@media only screen and (max-width: 575px){
	.navbar-brand .logo {
		width: 234px;
	}
	.image-grid{
		display: flex;
		flex-direction: column;
	}
	.main-image{
		width: 100% !important;
	}
	.tab-content .service-img-box .service-img-content{
		padding: 15px;
	}
	.tab-content .service-img-content{
		flex-direction: column;
	}
	.tab-content .service-img-box h5 {
        margin: 0 0 5px;
    }
	.footer-logo{
		text-align: center;
		display: block;
	}
	.footer .footer-logo img {
    	width: 80%;
	}
	.before-after-section .swiper-slide {
        min-height: 50vh;
    }
	.myAlsolike .swiper-slide:hover .alsoLike-text, 
	.myAlsolike .swiper-slide.swiper-slide-next + .swiper-slide .alsoLike-text {
		top: 58%;
	}
	.alsoLike-text h4{
		font-size: 1rem;
	}
}
	

.wpcf7-not-valid{
	border-color: #dc3232 !important;
}
.wpcf7-not-valid-tip{
	display: none;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output{
	border-color: rgb(220 50 50 / 80%);
    background: rgb(220 50 50 / 20%);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
	text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: rgb(70 180 80 / 80%);
    background: rgb(70 180 80 / 20%);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
	text-align: center;
}
.wpcf7-spinner{
	position: absolute;
}