/* ---------------------------------------------------------
   BASE CSS BOILERPLATE (REM VERSION)
------------------------------------------------------------*/

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ROOT VARIABLES */
:root {
  --primary: #00D084;
  --dark: #111;
  --light: #f5f5f5;
  --font-main: "Manrope", sans-serif;
  --font-secondary: "Nunito Sans", sans-serif;
  --secondary: #212B4D;
  --radius: 0.5rem; /* 8px */
  --transition: all .3s ease;
}

/* GLOBAL STYLES */
html {
  scroll-behavior: smooth;
  font-size: 1.1vw; /* 16px base */
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
.w-100{
    width:100%;
}
.common-spacing{
    padding: 3rem 0rem;
}
a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  margin: 0;
  padding: 0;
}
p{
    margin-bottom: 0.5rem;
}
a:focus-visible{
  border: 0;
  outline: none;
}
a:visited {
    color: inherit;
}
/* CONTAINERS */
.container {
  width: 92%;
  max-width: 90rem; /* 1200px */
  margin: 0 auto;
}

/* GRID HELPERS */
.grid {
  display: grid;
  gap: 1.25rem; /* 20px */
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.align-items-center {
  align-items: center;
}

.item-start {
  align-items: flex-start;
}

.item-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}
.text-black{
  color: #000 !important;
}
.mb-0{
  margin-bottom: 0;
}
.pt-0{
  padding-top: 0 !important;
}
.mt-4{
  margin-top: 2rem;
}
.bg-gray{
  background-color: #F2F2F2;
}
.text-right{
  text-align: right;
}
.white-color{
  color: #fff !important;
}
/* BUTTONS */
.btn, .btn-2:hover, .contact-form input[type="submit"] {
  padding: 0.4rem 1.375rem; /* 12px 22px */
  background-color: var(--primary);
  color: #212B4D;
  border-radius: var(--radius);
  display: inline-block;
  transition: var(--transition);
  font-weight: 600;
  margin-right: 0.4rem;
  border: 0.1rem solid var(--primary);
  opacity: 1;
}
.btn-2, .btn:hover {
  padding: 0.4rem 1.375rem; /* 12px 22px */
  background-color: transparent;
  color: #212B4D;
  border-radius: var(--radius);
  display: inline-block;
  transition: var(--transition);
  font-weight: 600;
  margin-right: 0.4rem;
  border: 0.1rem solid var(--primary);
  opacity: 1;
}
.download-btn{
    background-image: url(../images/download-ico.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
    padding-right: 3.4rem;
}
.download-btn:hover{
    background-color: var(--primary);
    padding-right: 3.4rem;
}
.back-btn {
  gap: 2rem;
  align-items: center;
  justify-content: end;
  font-weight: 600;
  color: var(--secondary);
  font-size: 1.2rem;
}
.back-btn img {
  width: 3rem;
  height: 3rem;
}
/* SECTIONS */
.section-title {
  font-size: 2rem; /* 32px */
  font-weight: 600;
  margin-bottom: 1.25rem; /* 20px */
}

/* HEADER */
header {
  padding: 0.6rem 0rem 0.4rem; /* 15px */
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 111;
}
header .logo{
    width: 8.75rem;
    height: 4.875rem;
}
header .logo img{
    width: 100%;
    height: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar nav{
    border-bottom: 0.1rem solid #eee;
    padding-bottom: 0.8rem;
}
.navbar nav ul{
    list-style: none;
}
.navbar nav > ul > li{
    padding: 0.4rem 1rem;
    /* position: relative; */
}
.navbar nav ul li a{
    color: #eee;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}
.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Container */
.megamenu{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 90rem;
  background: #0d1a3a;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  z-index: -1;
  padding-top: 8rem;
  align-items: center;
  padding-left: 13rem;
  padding-bottom: 4rem;
}
.megamenu > li > ul >li:first-child > a {
    background: var(--primary);
    
}
.megamenu > li > ul >li > a {
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right;
    color: #fff;
    font-weight: 600;
    padding: 0.4rem 0rem;
    font-size: 1.2rem;
    text-transform: capitalize;
    border-bottom: 0.1rem solid var(--primary);
    padding: 0.6rem 1rem;
}

/* LEFT SIDE */
.menu-left ul {
    list-style: none;
}
.hover-item > a {
    font-weight: 600;
    color: #00ffa0;
    display: flex;
    justify-content: space-between;
    padding-bottom: .3rem;
}
.inner-menu li a {
    color: #9fc2f8;
    font-size: 1.2rem !important;
    padding: 0.6rem 0;
    display: block;
    border-bottom: 0.1rem solid var(--primary);
    background: url(../images/right-arrow-menu.svg) no-repeat;
    background-size: 2%;
    background-position: 8%;
    padding-left: 3.2rem;
    text-transform: capitalize !important;
    font-weight: 200 !important;
}

/* RIGHT PANEL */
.menu-right {
    width: 40%;
    color: white;
    padding-left: 5rem;
}
.menu-right h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 200;
}
.menu-right p {
  font-size: 1.4rem;
  color: #9fb2d3;
  font-weight: 200;
  line-height: 1.2;
}
.main-color{
    color: var(--primary);
}
/* Banner Slider */
.hero-section .banner-slider{
  height: 100vh;
  overflow: hidden;
}
.hero-section .banner-slider .banner-item, .hero-section .banner-slider .banner-item .banner-img{
    position: relative;
}
.hero-section .banner-slider .banner-item .banner-content{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
}
.hero-section .banner-slider .banner-item .banner-content .banner-inner-content .banner-title {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: var(--font-secondary);
}
.hero-section .banner-slider .banner-item .banner-content .banner-inner-content .banner-title strong{
  font-weight: 800;
}
.hero-section .banner-slider .banner-item .banner-content .banner-inner-content p{
    color: #fff;
    text-transform: capitalize;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
}
.hero-section .banner-slider .banner-item .banner-content .banner-inner-content {
    padding-top: 5rem;
}
.hero-section .banner-slider .swiper-pagination-bullet {
    width: 2rem;
    height: 0.3rem;
    border-radius: 0rem;
    background: #ddd;
    bottom: 3rem;
    position: relative;
}
/* Ends Here */

/* About Sec */
.about-sec .about-left, .about-right{
    width: 46%;
}
.about-content .section-title, .main-heading-2 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 200;
}
.about-stats ul {
    display: flex;
    flex-wrap: wrap;
}
.about-stats ul li {
  width: 38%;
  border: 1px solid #00D084;
  list-style: none;
  padding: 2rem 1.2rem;
  transition: 0.1s ease-in-out;
}
.about-content .about-btns{
    margin-top: 2rem;
}
.about-stats ul li:nth-of-type(2), .about-stats ul li:last-child{
    border-left: 0;
}
.about-stats ul li:nth-of-type(2), .about-stats ul li:nth-of-type(1){
    border-bottom: 0;
}
.about-stats .stats-number {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 600;
}
.about-stats .stats-content {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
}
.about-stats ul li:hover{
  background-color: var(--primary);
}
.about-stats ul li:hover .stats-number{
  color: #fff;
}

/* Service Section */

.service-inner-block {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 4rem 0;
}
.service-main-title {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8rem;
}
.service-box{
  width: 100%;
}
.service-item{
  width: 25%;
}
.service-flex-content{
  width: 30%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 0.4rem;
}
.service-flex-content a.btn:hover{
    color: #fff;
}
.slide-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    /* background-repeat: no-repeat; */
    width: 100%;
    height: 120vh;
}
.slide-item:first-child{
    background-size: cover;
    background-attachment: fixed;
    min-height: 120vh;
}
.service-inner-block {
    position: relative;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
    z-index: 1111111111111;
    height: 120vh;
}

.service-inner-block .service-content {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.2s ease;
}
/* Video Slide */
.video-slide {
    position: relative;
    overflow: hidden;
}
.slide-video {
    position: absolute;
    top: -82%;
    left: 50%;
    width: 100%;
    height: 120vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.slide-item:hover .service-content {
  transform: translateY(0);
  opacity: 1;
}
/* Graphical Presece */
.main-heading{
  color: var(--secondary);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}
.tab-list ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
.tab-list ul li a {
    background-color: var(--secondary);
    padding: 1rem;
    display: flex;
    color: #fff;
    border-radius: 0.4rem;
    gap: 1rem;
}
.tab-list ul li a.active{
  background: var(--primary);
  color: var(--secondary);
}
.tab-list ul li a img {
    filter: invert(1) brightness(1000%);
}
.tab-list ul li a.active img{
  filter: none;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
/* Ends Here */
/* Business Section */
.business-sec .left {
    width: 30%;
    position: relative;
}
.business-sec .left p{
  line-height: 1.3;
  color: rgba(55, 71, 79, 1);
  margin-bottom: 1rem;
}
.business-sec .right {
  width: 66%;
}
.business-slide {
  position: relative;
}
.business-content {
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
  color: #eee;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.62) 76.38%, rgba(0, 0, 0, 0.8) 100%);
}
.business-content h2 {
    color: #eee;
}
.business-content p{
  margin-bottom: 1rem;
}
.business-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 200;
    margin-bottom: 1rem;
}
.business-sec .swiper-button-prev{
  top: 94%;
}
.business-sec .swiper-button-next{
    left: 40%;
    top: 94%;
}
.business-sec .fraction{
  top: 3rem;
  left: 5rem;
  position: relative;
}
.business-slide > img {
    min-height: 32rem;
    object-fit: cover;
    width: 100%;
}
/* Media Sec */
.media-sec{
 background: rgba(244, 244, 244, 1);
}
.media-slide{
  padding: 1.5rem 2.5rem;
  /* margin-right: 1.5rem; */
  border-bottom: 0.1rem solid var(--primary);
}
.media-slide .flex{
  gap: 0.8rem;
}
.media-slide .date, .green-label{
  background-color: var(--primary);
  font-size: 0.8rem;
  padding: 0.4rem;
  font-weight: 600;
  display: inline-block;
}
.media-slide h2{
  margin-top: 1rem;
    font-weight: 200;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.media-slider .custom-nav{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-bottom: 1rem;
}
.media-slider .custom-nav .swiper-button-prev{
  left: 42%;
  background: url(../images/left-arrow.svg) no-repeat;
  background-size: cover;
  top: 92%;
}
.media-slider .custom-nav .swiper-button-next{
  left: 54%;
  background: url(../images/right-arrow.svg) no-repeat;
  background-size: cover;
  top: 92%;
}
.slide-count {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
}
.swiper-button-prev svg, .swiper-button-next svg{
  display: none;
}
.swiper-button-prev{
  background: url(../images/left-arrow.svg) no-repeat;
  background-size: cover;
}
.swiper-button-next{
  background: url(../images/right-arrow.svg) no-repeat;
  background-size: cover;
}
/* Ends here */
.geographical-sec{
  background-color: #f4f4f4;
}
/* parallax-bg */
.powerful-teams {
    background: url(../images/parallax-bg.jpg) no-repeat;
    background-size: cover;
    padding: 10rem 0rem 8rem;
    position: relative;
}
.powerful-teams:before{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  content: '';
}
.powerful-teams .left{
  width: 30%;
  position: relative;
  align-self: flex-end;
}
.powerful-teams .left .main-heading{
  color: #fff;
  font-weight: 700;
  font-size: 2.9rem;
}
.powerful-teams .right {
    width: 30%;
    position: relative;
}
.parallax-desc {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.2;
}
.career-btn a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.8rem;
  border-radius: 1rem;
  display: block;
  background-image: url(../images/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: 96%;
  background-size: 2.5rem;
  margin-top: 2rem;
}

/* FOOTER */
footer {
  background-color: var(--secondary);
  color: #fff;
  padding: 2.5rem 0 1rem;
  background-image: url(../images/footer-bg.svg);
  background-repeat: no-repeat;
  background-position: 30% 77%;
  background-size: 35%;
}
.footer-sec .item:first-child {
    width: 36%;
    align-self: center;
}
.footer-sec .item {
    width: 24%;
    margin-bottom: 3rem;
}
.footer-sec .item:last-child{
  width: 15%;
}
.footer-links h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li a {
    color: #eee;
    font-weight: 200;
    padding-bottom: 0.8rem;
    display: block;
}
.footer-sec .item:last-child ul li a {
    font-weight: 500;
}
.footer-bottom {
    padding-top: 1rem;
    border-top: 0.1rem solid #FFFFFF33;
}
.footer-left {
    display: flex;
    gap: 3rem;
}
.footer-bottom p {
    margin-bottom: 0;
    font-weight: 200;
}
.footer-left ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}
.footer-left ul li a {
    color: #eee;
    font-weight: 200;
}
/* Inner Pages */
.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 20px;   /* space between items */
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    margin-top: 3rem;
}
.breadcrumbs li {
    position: relative;
}
.breadcrumbs li a {
    color: var(--primary);  /* light grey/white like your image */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}
.breadcrumbs li:last-child a, .breadcrumbs li:last-child {
    color: #fff;  /* green color for "Home" */
}
/* Add line separator between items */
.breadcrumbs li + li::before {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: #ffffff80;
  display: inline-block;
  margin-right: 1.6rem;
  position: relative;
  bottom: 0.3rem;
}
.inner-banner .banner-slider{
  height: 95vh;
}
.inner-banner .banner-slider .banner-content{
  background-color: rgba(0, 0, 0, 0.4) !important;
}
.sub-title{
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary);
}
.about-geographical .left, .about-geographical .right{
  width: 48%;
}
.about-geographical .about-stats ul li{
  width: 32%;
  border-bottom: 0.1rem solid var(--primary);
}
.about-geographical  .about-stats .stats-number span {
    font-size: 1.2rem;
    font-weight: 300;
    margin-left: 0.1rem;
}
.mission-vision-wrapper{
  position: relative;
  margin-bottom: 5rem;
}
.mission-vision-wrapper:before {
    left: 0;
    background: url(../images/bg-arrow.svg) no-repeat;
    width: 20rem;
    bottom: 0;
    content: "";
    position: absolute;
    width: 16rem;
    height: 17rem;
    bottom: -5.4rem;
    right: 0;
    background-size: cover;
    top: auto;
    z-index: 1;
}
.mission-vision-wrapper .mission-vision-section {
    display: grid;
    grid-template-columns: 45% 55%;
    width: 100%;
    background: #f3f5f7;
    padding: 0;
}
.geo-row{
  gap: 1rem;
}
.about-geographical .main-heading{
  margin-bottom: 2rem;
}

/* LEFT BLOCK */
.mission-vision-wrapper .left-block {
    padding: 5rem;
    background: #F2F2F2;
    position: relative;
}

.mission-vision-wrapper .small-heading {
    font-size: 16px;
    color: #00b36b;
    margin-bottom: 15px;
}
.mission-vision-wrapper .arrow-icon {
    margin-top: 40px;
}
.mission-vision-wrapper .arrow-icon img {
    width: 65px;
}

/* RIGHT BLOCK */
.mission-vision-wrapper .right-block {
    position: relative;
    height: 100%;
}

.mission-vision-wrapper .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.mission-vision-wrapper .overlay-content {
    position: relative;
    padding: 4rem 5rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
}

.mission-vision-wrapper .white {
    color: #fff;
}

/* VALUES BOXES */
.mission-vision-wrapper .values-boxes {
    display: flex;
    gap: 20px;
    margin-top: 2.5rem;
}

.mission-vision-wrapper .values-boxes .box {
    background: rgba(0, 150, 90, 0.45);
    padding: 1.5rem 0.8rem 1rem;
    border-radius: 0.4rem;
    width: 33%;
    color: #fff;
    backdrop-filter: blur(4px);
}

.mission-vision-wrapper .values-boxes .box h3 {
    margin-bottom: 0.4rem;
    font-size: 2.2rem;
    font-weight: 200;
}

.mission-vision-wrapper .values-boxes .box p {
    font-size: 0.89em;
    line-height: 1.5;
    font-weight: 500;
}

/* About Value */
.values-section {
    background: #D8F1EA;
    padding: 3.75rem 0; /* 60px */
    font-family: "Inter", sans-serif;
}
.values-section .small-title {
    font-size: 1rem; /* 14px */
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.625rem; /* 10px */
}
.values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr)); /* 280px */
    grid-gap: 1.5625rem; /* 25px */
    margin-top: 3rem;
}

.values-section .value-box {
    background: #fff;
    padding: 2.5rem 1.5625rem; /* 40px 25px */
    border-radius: 0.25rem; /* 4px */
    text-align: center;
    transition: all 0.3s ease;
}

.values-section .value-box:hover {
    transform: translateY(-0.3125rem); /* -5px */
    box-shadow: 0 0.625rem 1.5625rem rgba(0,0,0,0.08); /* 10px 25px */
}

.values-section .icon-wrap {
    width: 5.0625rem;  /* 65px */
    height: 5.0625rem; /* 65px */
    background: #EAF8F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem; /* 20px */
}

.values-section .icon-wrap img {
  width: 2.875rem; /* 30px */
  height: 2.875rem; /* 30px */
}

.values-section h3 {
  font-size: 2.2rem;
  font-weight: 200;
  margin-bottom: 0.9375rem;
  color: var(--secondary);
  line-height: 1.3;
  font-family: var(--font-main);
}

.values-section p {
   font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
}


/* Projects Page */
.project-row{
  gap: 3rem;
}
.project-row .left {
    width: 38%;
}
.project-row .left .main-heading{
  font-weight: 200;
}
.project-row .tab-list {
    width: 60%;
    padding-top: 6rem;
}
.project-row .tab-list ul{
  justify-content: end;
}
.project-inner {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.project-card {
  background: #F2F2F2;
  width: 32%;
  text-decoration: none;
  color: inherit;
}
.project-card:hover{
    opacity: 1;
   color: inherit;
}
.project-content {
  padding: 2rem;
}
.project-content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.project-content .details {
  list-style: none;
  padding-left: 1rem;
}
.project-card .image{
  height: 18rem;
  width: 100%;
  overflow: hidden;
}
.project-card .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-detail-sec .about-geographical .about-stats ul li{
  width: 47%;
}
.project-banner{
  height: 30rem;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2rem;
}
.project-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-btn {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: end;
}
.projects-btn .solar-btn {
    background: var(--secondary);
    padding: 0.4rem;
    color: #fff;
    align-items: center;
    gap: 0.4rem;
}
.projects-btn .solar-btn img{
  width: 1.2rem;
  height: 1.2rem;

}
.projects-btn .solar-btn.active{
  background-color: var(--primary);
}
.parallax-light {
    padding: 3rem 0rem;
    background-color: #ABE8D280;
    background-image: url(../images/light-bg-ico.svg);
    background-repeat: no-repeat;
    background-position: 80%;
    background-size: 32%;
}
.parallax-light.dark{
  background-color: var(--secondary);
  background-image: url(../images/dark-bg-arrow.svg);
  color: #fff;
  
}
.parallax-light .inner-content {
    max-width: 70%;
    margin: 0 auto;
}
.parallax-light .inner-content .sub-title{
  color: var(--secondary);
}
.media-left {
    width: 60%;
}
.media-sec .item:last-child .media-slide{
  border-bottom: 0;
}
.media-post .banner-slider{
  height: auto;
}
.media-detail{
  padding: 2rem 0rem 3rem;
}
.media-detail .breadcrumbs ul {
    margin-top: 0;
}
.media-detail .breadcrumbs ul li a {
    color: var(--primary);
    font-size: 0.9rem;
}
.media-detail .breadcrumbs ul li a.active{
  color: var(--secondary);
  opacity: 0.6;
}
.media-detail .breadcrumbs li + li::before{
  background: #ddd;
  width: 2.5rem;
}
.media-detail .main-heading{
  padding-top: 3rem;
}
.media-detail .media-slide {
    padding: 0;
    border-bottom: 0.2rem solid var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    width: 66%;
}
.media-det-content h2 {
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.3rem;
    margin: 1rem 0rem;
}
.media-det-content p {
    opacity: 0.8;
}
.media-flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.media-flex .left, .media-flex .right{
  width: 48%;
}
.media-flex .left img, .media-flex .right img{
  width: 100%;
}
/* Partner-contact (Two-column split: dark left / light right) */
.partner-contact{
  background: #f4f4f4; /* matches page background */
  padding: 0rem 0rem 4rem 0;
}
.partner-flex{
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  background: transparent;
  align-items: stretch;
}
.partner-left{
  background: var(--secondary); /* deep navy */
  color: #ffffff;
  padding: 2.5rem;
  min-height: 420px;
}
.partner-left .sub-title{
  color: #00D084;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.partner-title{
  font-weight: 300;
  font-size: 3.2rem;
  margin: 0.25rem 0 1.25rem;
  letter-spacing: 0.02rem;
}
.partner-desc{
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.partner-desc.small{
  opacity: 0.85;
  font-size: 0.95rem;
}
.partner-right{
  background: #F0F0F0; /* page right block */
  padding: 2rem;
  display: flex;
  align-items: center;
}
.form-wrap{
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
/*.form-wrap p{*/
/*  opacity: 0.6;*/
/*}*/
.form-wrap .main-heading{
  font-weight: 300;
  text-align: center;
}
.contact-form .form-row{
  margin-bottom: 1.15rem;
}
.contact-form .two-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea{
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--secondary);
    padding: 1rem 1.2rem;
    background: transparent;
    font-weight: 400;
    outline: none;
    font-family: 'Manrope';
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 400;
}

.contact-form textarea{
  resize: vertical;
  height: 90px;
}
.form-wrap p{
    width: 100%;
}
.contact-form .check label{
  font-size: 0.85rem;
  color: var(--secondary);
  display: inline-flex;
  gap: 0.6rem;
}
.contact-form input[type="checkbox"]{
  transform: translateY(1px);
}
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.form-row.two-cols {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: 47%;
    margin-bottom: 00;
    align-items: flex-start;
}
.send-btn{
  cursor: pointer;
  padding: 0.8rem 1.5rem !important;
  font-size: 1rem;
  font-weight: 300;
  font-family: var(--main-font);
}
input::placeholder {
    color: var(--secondary);
    font-weight: 400;
}
.btn-row{
  display: flex;
  justify-content: flex-end;
}
.text-center{
  text-align: center !important;
}
.partner-inner .project-card .project-content p{
  min-height: 3.5rem;
}

/* Development & Investment repeatable rows - CSS-only zig-zag */
.dev-list .dev-row{
  display: flex;
}
.dev-list .dev-row .text{
  flex: 1 1 50%;
  padding: 3rem;
  align-self: center;
}
.dev-list .dev-row .media{
  flex: 1 1 50%;
}
.dev-list .dev-row .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dev-list .dev-row:nth-child(even){
  flex-direction: row-reverse; /* auto zig-zag */
}
.dev-row .main-heading-2{
  margin-bottom: 2rem;
}
.contact-info {
  border: 0.1rem solid var(--primary);
  margin-top: 1rem;
  padding: 1.2rem;
}
.contact-office {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0.8rem 0rem;
}
.contact-email {
    padding: 1.5rem 0rem;
    border-bottom: 0.1rem solid;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 700;
}
.working-hour {
    font-size: 1rem;
    font-weight: 400;
}
.contact-email:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}
.contact-sec{
  padding: 3rem 0rem;
}
.common-content{
  padding: 0rem 0rem 3rem 0rem;
}
.common-content .main-heading-2{
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 980px){
  .dev-list .dev-row{ flex-direction: column; }
  .dev-list .dev-row .media img{ height: 240px; }
}

/* subtle small screens layout */
@media (max-width: 980px){
  .partner-flex{ grid-template-columns: 1fr; }
  .partner-left{ padding: 3rem 2rem; min-height: auto; }
  .partner-right{ padding: 2rem; }
  .form-wrap{ padding-top: 1rem; }
}
/* Responsive */
@media (max-width: 768px) {
    .projects-section .top-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mission-vision-wrapper .mission-vision-section {
        grid-template-columns: 1fr;
    }
    .mission-vision-wrapper .values-boxes {
        flex-direction: column;
    }
    .mission-vision-wrapper .values-boxes .box {
        width: 100%;
    }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.75rem; /* 28px */
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 0.625rem; /* 10px */
  }

  .section {
    padding: 3.125rem 0; /* 50px */
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem; /* 24px */
  }
}

/* Feature switcher: four columns that change the big background on hover */
.feature-switcher{
  position: relative;
  overflow: hidden;
}
.feature-switcher .feature-inner{
  position: relative;
  display: flex; /* columns are direct children so sibling selector works */
  gap: 1rem;
  min-height: 90vh;
  align-items: end;
  padding: 0rem 3rem
}
.feature-switcher .col{
  flex: 1 1 25%;
  padding: 3.25rem 1.25rem;
  color: #fff;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.feature-switcher .col .col-content h4{
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}
.feature-switcher .col .col-content p{
  color: rgba(255,255,255,0.95);
  font-weight: 300;
  font-size: 0.95rem;
}
.feature-switcher .col .col-content .btn{
  opacity: 0;
}
.feature-switcher .col:hover, .feature-switcher .col.active {
    background: #fff;
    color: var(--secodary);
}
.feature-switcher .col:hover p, .feature-switcher .col.active p{
  color: var(--secodary);
  font-weight: 400;
}
.feature-switcher .col:hover .btn, .feature-switcher .col.active .btn{
  opacity: 1;
}
/* Background layers (stacked under columns) */
.feature-switcher .bg-layer{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: bottom;
  opacity: 0;
  transition: opacity .32s ease;
  z-index: 0;
  filter: brightness(.55) contrast(.95);
  
}

/* Default: first background (2nd element since col is 1st) is visible on page load */
.feature-switcher .feature-inner .bg-layer:nth-of-type(2){ opacity: 1 !important; }
.feature-switcher .feature-inner .col:nth-of-type(2){
  background: #fff;
}

/* Hover mapping: generic and loop-friendly - each column is followed by its bg-layer */
.feature-inner .col:hover + .bg-layer,
.feature-inner .col:focus-within + .bg-layer { opacity: 1 !important; }

/* Slightly brighten the hovered column's text card for readability */
.feature-inner .col:hover .col-content,
.feature-inner .col:hover .col-card{ transform: translateY(-3px); transition: transform .25s ease; }

/* Responsive: stack columns */
@media (max-width: 980px){
  .feature-switcher .feature-inner{ display:block; min-height: auto; }
  .feature-switcher .col{ padding: 1.25rem 0; color: var(--secondary); }
  .feature-switcher .bg-layer{ position: relative; height: 240px; filter: none; }
  .feature-switcher .bg-layer{ opacity: 1; }
  .feature-switcher .col:nth-child(3) .col-card{ max-width:100%; }
}
.sustainble-sec{
  overflow: hidden;
}
.sustainble-sec .left, .sustainble-sec .right {
    width: 50%;
    max-height: 17rem;
}
.sustainble-sec .left .parallax-light.dark{
  background-position: 100% 100%;
  background-size: 45%;
}
.sustaibility-page{
  padding-bottom: 0 !important;
}
.error-banner .banner-content{
    justify-content: end !important;
}
.error-banner .banner-content .banner-inner-content{
    padding-top: 0;
    padding-right: 5rem;
}
.error-banner .banner-content .banner-inner-content .banner-title{
  margin-bottom: 0 !important;
  font-size: 6rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}
.error-banner .banner-content .banner-inner-content p{
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  margin-bottom: 2rem;
}