.company-overview {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.company-overview .container {
  max-width: 1100px;
  margin: auto;
}

.overview-header {
  text-align: center;
  margin-bottom: 40px;
}

.overview-header h2 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.overview-header h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00e676;
  display: block;
  margin: 10px auto 0;
}

.overview-content {
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.95;
}

.mission-vision-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.mission-box,
.vision-box {
  flex: 1 1 450px;
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.mission-box h3,
.vision-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #00e676;
}

.mission-box p,
.vision-box p {
  font-size: 16px;
  line-height: 1.7;
}









.solar-portfolio {
  padding: 80px 20px;
  background: #f4f8fb;
  font-family: 'Poppins', sans-serif;
}

.core-capabilities .container {
  max-width: 1200px;
  margin: auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f2027;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* BOX DESIGN */
.portfolio-item {
  position: relative;
  background: #ffffff;
  padding: 25px 25px 25px 70px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  overflow: hidden;
  border-left: 1px solid #d73c3b;
  display: flex;
  align-items: center;
}


/* Hover */
.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* NUMBER */
.portfolio-item span {
  position: absolute;
  left: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #d73c3b;
}

/* TEXT */
.portfolio-item p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Center last item (since 5 items) */
.portfolio-item:last-child {
  grid-column: 2 / 3;
}

/* Tablet */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item:last-child {
    grid-column: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}









.ev-solutions-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.ev-solutions-container {
  max-width: 1200px;
  margin: auto;
}

.ev-solutions-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ev-solutions-image {
  flex: 1;
}

.ev-solutions-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.ev-solutions-content {
  flex: 1.2;
}

.ev-solutions-header {
  margin-bottom: 40px;
}

.ev-solutions-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f2027;
}

.ev-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ev-solutions-item {
  position: relative;
  background: #f9fbfc;
  padding: 20px 20px 20px 60px;
  border-radius: 12px;
  border-left: 1px solid #d73c3b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.ev-solutions-item:hover {
  transform: translateY(-6px);
}

.ev-solutions-item span {
  position: absolute;
  left: 18px;
  font-weight: 700;
  color: #d73c3b;
}

.ev-solutions-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .ev-solutions-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .ev-solutions-grid {
    grid-template-columns: 1fr;
  }
}






.cap-app-modern {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f4f8fb, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.cap-app-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

/* Card Design */
.cap-app-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* Decorative Background Shape */
.cap-app-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: rgba(0,200,83,0.08);
  border-radius: 50%;
}

.cap-right .cap-app-card::before {
  background: rgba(0,123,255,0.08);
}

.cap-app-card h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #0f2027;
}

/* Grid */
.cap-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Items */
.cap-app-item {
  position: relative;
  background: #f9fbfc;
  padding: 18px 18px 18px 55px;
  border-radius: 12px;
  border-left: 1px solid #d73c3b;
  transition: 0.3s ease;
}

.cap-app-item.blue {
  border-left: 1px solid #007bff;
}

.cap-app-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Number */
.cap-app-item span {
  position: absolute;
  left: 18px;
  font-weight: 700;
  color: #d73c3b;
}

.cap-app-item.blue span {
  color: #007bff;
}

.cap-app-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .cap-app-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .cap-app-grid {
    grid-template-columns: 1fr;
  }
}






.contact-modern-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f2f2f2, #f4f4f4, #f2f2f2);
  font-family: 'Poppins', sans-serif;
}

.contact-modern-container {
  max-width: 1100px;
  margin: auto;
}

.contact-modern-card {
  display: flex;
  gap: 60px;
  background:#8d1d1c;
  padding: 50px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Left */
.contact-modern-left {
  flex: 1;
  color: #ffffff;
}

.contact-modern-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-modern-left h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;    color: #ffffff;
}

.contact-modern-left p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-modern-warranty {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(0,255,140,0.15);
  border-radius: 30px;
  font-size: 14px;
}

/* Right */
.contact-modern-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-modern-box {
  background: rgba(255,255,255,0.12);
  padding: 20px;
  border-radius: 12px;
  color: #ffffff;
  transition: 0.3s;
}

.contact-modern-box:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.contact-modern-box span {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-modern-box p {
  margin: 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-modern-card {
    flex-direction: column;
    padding: 30px;
  }
}







.modern-gallery-section {
  padding: 80px 20px;
  background: #fff;
}

.myGallery {
  padding-bottom: 50px;
}

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

.swiper-slide img {
  width: 100%;
  border-radius: 15px;
  cursor: zoom-in;
  transition: 0.3s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.swiper-slide img:hover {
  transform: scale(1.05);
}





.modern-gallery-section-2 {
  padding: 80px 20px;
  background: #ffffff; /* Footer ke upar clean look */
}

.myGallery2 {
  padding-bottom: 50px;
}

.myGallery2 .swiper-slide img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.myGallery2 .swiper-slide img:hover {
  transform: scale(1.05);
}
















