.breadcrumb_wrapper {
  position: relative;
}
.breadcrumb_img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.breadcrumb_content {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: var(--white-color);
}
.breadcrumb_content h1 {
  font-size: 45px;
  text-transform: capitalize;
}
.breadcrumb_img {
  position: relative;
}
.breadcrumb_img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
}

.calculator-form {
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.calculator-form h3 {
  background-color: var(--main-color);
  padding: 1rem;
  font-size: 20px;
  color: var(--white-color);
}

.calculator_card {
  background: whitesmoke;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px;
}

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

.header h1 {
  font-size: 25px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 10px !important;
}

.header p {
  color: var(--main-color);
}

.inputBox {
  margin-bottom: 35px;
}

.inputBox label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--main-color);
}

.inputBox input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 18px;
  font-size: 20px;
  border-radius: 12px;
  outline: none;
  background: var(--white-color);
}

.results {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.results_box {
  background: var(--white-color);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}
.popup-form {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 450px;
  width: 100%;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  z-index: 99;
  left: 50%;
  top: 50%;
  transition: 0.4s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.54);
  background-color: var(--white-color);
}
.popup-form.active {
  opacity: 1;
  visibility: visible;
  transition: 0.4s ease;
}
.popup-form-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup-form-close:hover {
  background: var(--main-color);
  color: #fff;
  transform: rotate(90deg);
}

.popup-header {
  padding-right: 35px;
  margin-bottom: 25px;
}

.popup-header h3 {
  margin: 0 0 8px !important;
  padding: 0;
  background-color: transparent;
  color: var(--main-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

.popup-header p {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

.popup-input input {
  width: 100%;
  height: 52px;
  padding: 0 16px;

  border: 1px solid #ddd;
  border-radius: 10px;

  background: #fafafa;
  color: #222;

  font-size: 15px;
  outline: none;

  box-sizing: border-box;
  transition: all 0.3s ease;
}

.popup-input input::placeholder {
  color: #aaa;
}

.popup-input input:focus {
  background: #fff;
  border-color: var(--main-color);
  box-shadow: 0 0 0 4px rgba(67, 245, 35, 0.12);
}

.popup-submit {
  margin-top: 8px;
}

.popup-submit .global_btn {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  border-radius: 10px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-submit .global_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 245, 74, 0.25);
}

.popup-submit .global_btn i {
  transition: transform 0.3s ease;
}

.popup-submit .global_btn:hover i {
  transform: translateX(4px);
}

.popup-input {
  margin-bottom: 18px;
}

.popup-input label {
  display: block;
  margin-bottom: 7px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}
.form-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.results_box:hover {
  transform: translateY(-6px);
}

.results_box span {
  font-size: 15px;
  color: #777;
}

.results_box h2 {
  font-size: 38px;
  margin: 15px 0;
  color: var(--green-color);
}

.results_box small {
  color: #444;
  font-weight: 600;
}

.calculator_card button {
  width: 100%;
  padding: 18px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  background: var(--main-color);
  color: white;
  transition: 0.3s;
}

.calculator_card button:hover {
  background: var(--green-color);
}

.formula {
  background: white;

  padding: 25px;

  border-radius: 18px;
}

.formula h3 {
  margin-bottom: 15px;
  color: var(--green-color);
}

.formula p {
  margin: 10px 0;
  font-size: 17px;
}

.resultCard {
  /* background: linear-gradient(135deg, var(--green-color), var(--green-color)); */
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  background-color: var(--main-color);
  margin-bottom: 1rem;
  width: 100%;
}

.resultCard h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.resultCard h1 {
  font-size: 40px;
}
.mission-vision-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.mission-vision-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission-vision-content {
  background-color: var(--green-color);
  height: 100%;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.mission-vision-content h3 {
  text-transform: capitalize;
  font-size: 30px;
}
.mission-vision-content p {
  margin-top: 12px;
  color: var(--white-color);
  font-size: 15px;
}

/* counter_wrapper */
.counter_wrapper {
  background-image: url("../images/counter.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.counter-box-number {
  position: relative;
}
.counter-box-number .counter-icon img {
  width: 40px;
}
.counter-box-number .counter-icon {
  position: absolute;
  right: 1rem;
  top: 0;
  border-radius: 100px;
  background-color: var(--main-color);
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.counter-box-number h3 {
  font-size: 90px;
  font-weight: 800;
  line-height: 1em;
  text-shadow: 1px 0px 4px #d8be9e;
  color: #ffffff;
}
.counter-box {
  text-align: center;
}
.teams-box-img {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.teams-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teams-box:hover img {
  transition: 0.3s ease;
  opacity: 0.8;
}
.counter-box h6 {
  font-weight: bold;
  font-size: 20px;
  margin: 10px 0 !important;
  text-transform: capitalize;
  color: var(--main-color);
}
.counter-box p {
  color: var(--black-color);
}
/* trusted-box-img */
.trusted-box-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.trusted-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s ease;
  margin-bottom: 24px;
}
.trusted-box-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--white-color);
}
.trusted-box-content h3 {
  color: var(--main-color);
  font-size: 24px;
}
.trusted-box-content p {
  font-size: 18px;
  color: var(--white-color);
}

.case-section .case-box {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

/* teams-box */
.teams-box {
  border-radius: 10px;
  overflow: hidden;
  background-color: whitesmoke;
  border: 1px solid #ccc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}
.teams-box-content h6 {
  color: var(--black-color);
  font-weight: bold;
  margin-top: 3px;
}
.teams-social {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.teams-box-img img {
  width: 100%;
  transition: 0.3s ease;
  object-position: top;
  object-fit: cover;
}
.teams-social a {
  height: 32px;
  width: 32px;
  background-color: var(--green-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
.teams-box-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.teams-box-content h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--green-color);
}
.teams-box-content p {
  font-size: 15px;
  margin-top: 5px;
}

.case-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  margin-bottom: 30px;
}

.case-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.case-box-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.case-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-box:hover .case-box-img img {
  transform: scale(1.12);
}

.case-box-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  z-index: 1;
  transition: 0.4s;
}

.case-box:hover .case-box-img::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

.case-box-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #fff;
  z-index: 2;
  transition: 0.4s;
}

.case-box:hover .case-box-content {
  bottom: 10px;
}

.case-box-content span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.case-box-content h3 {
  font-size: 22px;
  margin-right: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px !important;
  line-height: 1;
}

.case-box-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--green-color);
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--white-color);
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 600;
  transition: 0.4s;
}

.case-box-content a i {
  transition: 0.4s;
}

.case-box-content a:hover i {
  transform: translateX(3px);
}

.case-box::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -120%;
  width: 60%;
  height: 250%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(25deg);
  transition: 0.7s;
}

.case-box:hover::after {
  left: 150%;
}

.case_studies {
  padding: 80px 0;
  background: #f8fafc;
}

.case_studies__content {
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.case_studies__content h2 {
  font-size: 40px;
  line-height: 1.3;
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 30px !important;
}

.case_studies__content h3 {
  font-size: 28px;
  color: #15803d;
  font-weight: 600;
  margin: 40px 0 18px !important;
}

.case_studies__content h4 {
  font-size: 20px;
  color: #1f2937;
  font-weight: 600;
  margin-top: 25px !important;
}

.case_studies__content p {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 20px !important;
}

.case_studies__content ul {
  padding-left: 25px !important;
  margin-bottom: 30px;
}

.case_studies__content ul li {
  font-size: 17px;
  list-style: disc !important;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 10px;
}

.case_studies__content ul li::marker {
  color: var(--main-color);
}

/* Case Study Sidebar */

.case_sidebar {
  position: sticky;
}

.case_widget,
.case_cta {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.case_widget h4,
.case_cta h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px !important;
  position: relative;
  padding-bottom: 12px;
}

.case_widget h4::after,
.case_cta h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--main-color);
  border-radius: 5px;
}

.case_widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case_widget ul li {
  font-size: 15px;
  color: #4b5563;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}

.case_widget ul li:last-child {
  border-bottom: none;
}

.related_case li a {
  color: #374151;
  text-decoration: none;
  transition: 0.3s;
}

.related_case li a:hover {
  color: var(--main-color);
  padding-left: 8px;
}

.case_cta {
  background: linear-gradient(135deg, var(--main-color), #15803d);
  text-align: center;
}

.case_cta h4 {
  color: #fff;
}

.case_cta h4::after {
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.case_cta p {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px !important;
}

.case_cta .btn {
  display: inline-block;
  background: #fff;
  color: var(--main-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.case_cta .btn:hover {
  transform: translateY(-3px);
}

.certificate-list {
  padding: 0 20px;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef5ff;
  color: var(--main-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.quality-badge i {
  font-size: 14px;
}

.certificate-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px 25px;
  margin-bottom: 25px;
  background: #ffffff;
  border: 1px solid #e7eee9;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(24, 75, 45, 0.07);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.certificate-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--main-color), var(--main-color));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s ease;
}

/* Soft background glow */
.certificate-item::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  filter: blur(5px);
  z-index: -1;
  transition:
    transform 0.5s ease,
    background 0.5s ease;
}

.certificate-item:hover {
  transform: translateY(-8px);

  border-color: rgba(34, 197, 94, 0.35);

  box-shadow:
    0 18px 45px rgba(22, 101, 52, 0.14),
    0 0 0 1px rgba(34, 197, 94, 0.05);
}

.certificate-item:hover::before {
  transform: scaleY(1);
}

.certificate-item:hover::after {
  transform: scale(1.8);
  background: rgba(34, 197, 94, 0.14);
}

.certificate-item .icon img {
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.45s ease,
    background 0.45s ease,
    color 0.45s ease,
    box-shadow 0.45s ease;
}

.certificate-item .content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.certificate-item .content h5 {
  margin: 0 0 9px;

  color: #163b27;

  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;

  transition: color 0.3s ease;
}

.certificate-item:hover .content h5 {
  color: var(--main-color);
}

.certificate-item .content p {
  margin: 0;

  color: #68756d;

  font-size: 14px;
  line-height: 1.75;

  transition: color 0.3s ease;
}

.certificate-item:hover .content p {
  color: #4b5b51;
}

.certificate-item .content h5::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--main-color), var(--blue-color));
  border-radius: 10px;
  transition: width 0.4s ease;
}

.certificate-item:hover .content h5::after {
  width: 45px;
}

.certificate-list h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px !important;
  line-height: 1.2;
}

.certificate-desc {
  font-size: 16px;
  margin-bottom: 35px;
}

.certificate-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.certificate-item:first-of-type {
  border-top: none;
}

.certificate-item .icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: #f3f7ff;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.certificate-item h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px !important;
  color: #111827;
}

.certificate-item p {
  font-size: 15px;
  margin: 0;
}

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

/* Work Presence  */

.work-presence-content .work-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.work-presence-content .work-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.work-presence-content .work-description {
  font-size: 16px;
  margin-bottom: 30px;
}

.work-presence-content .work-state-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-presence-content .work-state-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.work-presence-content .work-state-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
}

.work-presence-content .work-state-list li:hover {
  color: var(--main-color);
  transform: translateX(5px);
  transition: 0.3s ease;
}

/* solar system page css */
.solar-type-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.solar-type-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 5px;
  background: #0f9d58;
  transition: 0.4s;
}

.line-clamp-text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.solar-type-card:hover::before {
  width: 100%;
}

.solar-type-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.solar-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #e9f8ef;
  color: #0f9d58;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin-bottom: 25px;
  transition: 0.4s;
}

.solar-type-card:hover .solar-icon {
  background: #0f9d58;
  color: #fff;
  transform: rotate(360deg);
}

.solar-type-card h3 {
  font-size: 24px;
  margin-bottom: 18px !important;
  color: #222;
  font-weight: 700;
}

.solar-type-card p {
  color: #666;
}

.solar-type-card-box {
  background: #f8f9fa;
  border-left: 5px solid #0f9d58;
  padding: 18px;
  margin-top: 22px;
  border-radius: 10px;
}

.solar-type-card-box.danger {
  border-left-color: #ff5252;
}

.solar-type-card-box h5 {
  font-weight: 700;
  margin-bottom: 12px !important;
  color: #222;
}

.solar-type-card-box ul {
  margin: 0;
  padding-left: 20px !important;
}

.solar-type-card-box li {
  margin-bottom: 10px;
  list-style: disc !important;
  color: #555;
}

.state-list li {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--main-color);
  border-radius: 50%;
  text-transform: capitalize;
  font-size: 14px;
  display: block;
  animation: blink 1s infinite;
}
#chartdiv {
  width: 100%;
  height: 500px;
}

.buy-card {
  margin: 0 50%;
  margin-top: 20px;
  max-width: auto;
  width: 100%;
}

/* Approximate positions */
.delhi {
  top: 22%;
  left: 42%;
}

.haryana {
  top: 21%;
  left: 38%;
}

.up {
  top: 25%;
  left: 49%;
}
.india-map img {
  width: 100%;
}
@keyframes blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0.3;
  }
}

/* resco css start */
.solar-type-card .intro {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px !important;
}

.benefit-box {
  background: #f8faf8;
  border-left: 5px solid #28a745;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  transition: 0.3s;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-box h4 {
  font-size: 20px;
  margin-bottom: 15px !important;
  color: #198754;
}

.benefit-box h4 i {
  margin-right: 8px;
}

.benefit-box ul {
  padding-left: 20px !important;
  margin: 0;
}

.benefit-box ul li {
  margin-bottom: 10px;
  color: #555;
  list-style: disc !important;
  line-height: 1.7;
}

.user-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.user-tags span {
  background: #198754;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-card {
  width: calc(100% - 23px);
}

.gallery-box {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-box-img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #000;
}

.gallery-box-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   PLAY OVERLAY
========================= */

.video-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.gallery-box:hover .video-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.play-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.9);
  color: #000;

  border-radius: 50%;

  font-size: 24px;
  padding-left: 4px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

  transition: 0.3s ease;
}

.gallery-box:hover .play-icon {
  transform: scale(1.1);
}

/* =========================
   LIGHTBOX
========================= */

.video-lightbox {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.94);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 99999;
}

.video-lightbox.active {
  display: flex;
}

.lightbox-content {
  width: 80%;
  max-width: 1100px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content video {
  width: 100%;
  max-height: 85vh;

  display: block;

  background: #000;

  border-radius: 5px;

  outline: none;
}

.lightbox-close {
  position: absolute;

  top: 25px;
  right: 30px;

  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);
  color: #fff;

  font-size: 35px;
  line-height: 40px;

  cursor: pointer;

  z-index: 10;

  transition: 0.3s ease;
}

.lightbox-close:hover {
  background: #fff;
  color: #000;
}

/* =========================
   PREVIOUS / NEXT
========================= */

.lightbox-prev,
.lightbox-next {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);
  color: #fff;

  font-size: 28px;

  cursor: pointer;

  z-index: 10;

  transition: 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #fff;
  color: #000;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* =========================
   COUNTER
========================= */

.video-counter {
  position: absolute;

  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  color: #fff;

  font-size: 15px;

  background: rgba(0, 0, 0, 0.5);

  padding: 7px 15px;

  border-radius: 20px;
}

.gallery-box-img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.gallery-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-box:hover .gallery-cover {
  transform: scale(1.05);
}

/* Play Button */
.video-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.15);

  transition: 0.3s ease;
}

.gallery-box:hover .video-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--main-color);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}
.gallery-box:hover .play-icon {
  transform: scale(1.1);
  background: #fff;
}

.project-overview-section {
  width: 100%;
}

.project-overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.project-overview-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.project-overview-tag {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--green-color);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-overview-heading h2 {
  margin: 0 0 18px;

  color: #17221c;

  font-size: 42px;
  font-weight: 700;

  line-height: 1.2;
}

.project-overview-heading h2 span {
  color: var(--green-color);
}

.project-overview-heading p {
  margin: 0;

  color: #68736d;

  font-size: 16px;
  line-height: 1.7;
}

.project-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.overview-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e8ece9;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(20, 50, 30, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.overview-card:hover::before {
  transform: scaleX(1);
}

/* Hover */

.overview-card:hover {
  transform: translateY(-5px);
  border-color: #d7e6dc;
  box-shadow: 0 15px 40px rgba(20, 80, 40, 0.1);
}

.overview-card-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaf7ee;
  color: var(--green-color);
  font-size: 22px;
  transition: 0.3s ease;
}

.overview-card:hover .overview-card-icon {
  background: var(--green-color);
  color: #ffffff;
  transform: scale(1.05);
}

.overview-card-content h3 {
  margin: 2px 0 9px;

  color: #17221c;

  font-size: 19px;
  font-weight: 600;

  line-height: 1.3;
}

.overview-card-content p {
  margin: 0;

  color: #68736d;

  font-size: 14px;

  line-height: 1.7;
}

.overview-card:last-child {
  grid-column: 1 / -1;

  max-width: calc(50% - 10px);

  width: 100%;

  justify-self: center;
}

@media (max-width: 1440px) {
  .resultCard h4 {
    font-size: 1rem;
  }
  .resultCard h1 {
    font-size: 32px;
  }
  .results_box {
    padding: 1rem;
  }
  .results_box small {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .resultCard:nth-child(1) {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .project-overview-section {
    padding: 65px 20px;
  }

  .project-overview-heading {
    margin-bottom: 40px;
  }

  .project-overview-heading h2 {
    font-size: 36px;
  }

  .project-overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-card:last-child {
    grid-column: auto;

    max-width: none;
  }
}

@media (max-width: 575px) {
  .project-overview-section {
    padding: 50px 15px;
  }
  .calculator-form h3 {
    font-size: 1rem;
  }
  .note-text {
    font-size: 12px;
  }
  .header h1 {
    font-size: 21px;
  }
  .results_box h2,
  .resultCard h1 {
    font-size: 30px;
    margin-top: 8px;
  }
  .project-overview-heading {
    margin-bottom: 30px;
  }

  .project-overview-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .project-overview-heading h2 {
    font-size: 28px;

    line-height: 1.3;
  }

  .project-overview-heading p,
  .header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .project-overview-grid {
    gap: 15px;
  }

  .overview-card {
    gap: 15px;

    padding: 22px 18px;

    border-radius: 12px;
  }

  .overview-card-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 10px;

    font-size: 18px;
  }

  .overview-card-content h3 {
    font-size: 17px;
  }

  .overview-card-content p {
    font-size: 13px;

    line-height: 1.65;
  }
}

@media (max-width: 380px) {
  .overview-card {
    flex-direction: column;
  }

  .overview-card-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 991px) {
  .gallery-card {
    width: calc(50% - 15px);
  }

  .gallery-box-img {
    height: 250px;
  }

  .lightbox-content {
    width: 85%;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .gallery-card {
    width: 100%;
  }
  .video-grid {
    gap: 1rem;
  }

  .gallery-box-img {
    height: 230px;
  }

  .lightbox-content {
    width: 95%;
  }

  .lightbox-content video {
    max-height: 75vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;

    font-size: 20px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .work-presence-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .work-presence-content .work-state-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .certificate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .teams-box,
  .about-img,
  .calculator-form,
  .contact-wrapper {
    margin-bottom: 20px;
    height: auto;
  }
  .myFlex {
    flex-direction: column-reverse;
  }
  .work-presence-content .work-title {
    font-size: 32px;
  }

  .work-presence-content .work-state-list li {
    padding-left: 0;
  }

  .work-presence-content .work-state-list li::before {
    position: static;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  }
  .certificate-list {
    padding: 15px;
  }

  .certificate-list h2 {
    font-size: 34px;
  }
  .case_sidebar {
    position: static;
    margin-top: 40px;
  }
  .case_studies {
    padding: 60px 0;
  }

  .case_studies__content {
    padding: 40px;
  }

  .case_studies__content h2 {
    font-size: 34px;
  }

  .case_studies__content h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .solar-type-card {
    padding: 20px;
  }
  .teams-box-img img {
    height: 324px;
    object-position: center;
  }
  .certificate-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .certificate-item {
    margin-bottom: 0;
  }
  .solar-icon {
    height: 62px;
    width: 62px;
  }
  .case-box-img {
    height: 220px;
  }

  .case-box-content h3,
  .solar-type-card h3,
  .work-presence-content .work-title {
    font-size: 20px;
  }
  .solar-type-card h3 {
    margin-bottom: 8px !important;
  }
  .case_studies {
    padding: 45px 0;
  }

  .case_studies__content {
    padding: 25px;
    border-radius: 12px;
  }

  .case_studies__content h2 {
    font-size: 28px;
  }

  .case_studies__content h3 {
    font-size: 22px;
    margin-top: 30px;
  }

  .case_studies__content h4 {
    font-size: 18px;
  }

  .case_studies__content p,
  .case_studies__content ul li,
  .work-presence-content .work-description,
  .work-presence-content .work-state-list li,
  .work-presence-content .work-tag {
    font-size: 15px;
  }
  .civil-heading h1 {
    font-size: 18px !important;
  }
  .certificate-list h2 {
    font-size: 28px;
  }

  .certificate-desc {
    font-size: 15px;
  }

  .certificate-item {
    gap: 15px;
    padding: 18px;
  }

  .certificate-item .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 18px;
  }

  .certificate-item h5 {
    font-size: 18px;
  }

  .certificate-item p {
    font-size: 14px;
  }

  .benefit-box {
    margin-bottom: 20px;
  }

  .benefit-box h4 {
    font-size: 18px;
  }

  .user-tags {
    justify-content: center;
  }

  .user-tags span {
    font-size: 13px;
    padding: 8px 14px;
  }

  .calculator_card {
    padding: 20px;
  }

  .header h1 {
    font-size: 25px;
  }

  .box h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .case_widget,
  .case_cta {
    padding: 20px;
  }
  .breadcrumb_content {
    top: 70%;
  }
  .breadcrumb_img img {
    height: 250px;
  }
  .breadcrumb_content h1 {
    font-size: 22px;
  }
  .mission-vision-content {
    padding: 1rem 2rem;
  }
  .mission-vision-content p {
    margin-top: 4px;
  }
  .mission-vision-content h3 {
    font-size: 25px;
  }
  .teams-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .case_widget h4,
  .case_cta h4 {
    font-size: 20px;
  }

  .case_widget ul li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .quality-badge {
    font-size: 12px;
    padding: 7px 12px;
  }
  .case_studies__content {
    padding: 18px;
  }

  .case_studies__content h2 {
    font-size: 24px;
  }

  .case_studies__content h3 {
    font-size: 20px;
  }

  .case_studies__content p,
  .case_studies__content ul li {
    font-size: 14px;
    line-height: 1.7;
  }

  .certificate-list h2 {
    font-size: 24px;
  }

  .certificate-item {
    align-items: flex-start;
  }

  .certificate-item .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }
}
