:root {
  --theme-red: #003978;
  --theme-red-hover: #c91c28;
  --theme-dark: #08070C;
  --theme-text: #333;
  --theme-text-light: #666;
}

.pamr-topbar,
.pamr-main-header {
  font-family: 'Inter', sans-serif;
}

.pamr-topbar {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
  z-index: 1100;
  position: relative;
}

.pamr-topbar-contact ul,
.pamr-topbar-social ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pamr-topbar-contact ul li {
  display: inline-block;
  margin-right: 18px;
}

.pamr-topbar-contact ul li:last-child {
  margin-right: 0;
}

.pamr-topbar-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.pamr-topbar-contact i {
  color: #ffffff;
  margin-right: 6px;
  font-size: 16px;
}

.pamr-topbar-social {
  text-align: right;
}

.pamr-topbar-social ul li {
  display: inline-block;
  margin-left: 5px;
}

.pamr-topbar-social a {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-red);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.pamr-topbar-social a:hover {
  background: #fff;
  color: var(--theme-red);
}

@media (max-width: 767.98px) {
  .pamr-topbar-contact {
    text-align: center;
    margin-bottom: 4px;
  }
  .pamr-topbar-social {
    text-align: center;
  }
}

.pamr-main-header {
  position: relative;
  z-index: 1200;
}

.pamr-header-card {
  max-width: 1270px;
  margin: 10px auto 0 auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
  padding: 12px 20px;
  position: relative;
}

@media (min-width: 992px) {
  .pamr-main-header {
    position: sticky;
    top: 0;
  }
}

.pamr-main-header .navbar {
  padding: 0;
}

.pamr-main-header .navbar-brand {
  padding: 0;
}

.pamr-main-menu .nav-link {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  color: var(--theme-dark);
  transition: color 0.2s ease;
}

.pamr-main-menu .nav-link:hover,
.pamr-main-menu .nav-link:focus,
.pamr-main-menu {
  color: #003978 !important;
}

.pamr-submenu > .nav-link.dropdown-toggle::after {
  margin-left: 4px;
  margin-top: 10px;
}

.pamr-dropdown {
  border-radius: 16px;
  border: none;
  padding: 8px 0;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  background: var(--theme-red);
}

.pamr-dropdown .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 6px 18px;
}

.pamr-dropdown .dropdown-item:hover,
.pamr-dropdown .dropdown-item:focus {
  background: rgba(0,0,0,0.08);
  color: #fff;
}

.pamr-highlighted-menu .nav-link {
  background: var(--theme-red);
  color: #fff;
  border-radius: 999px;
  padding: 9px 30px !important;
  font-weight: 600;
  border: 2px solid var(--theme-red);
  transition: 0.2s transform ease-in-out, 0.2s background ease-in-out;
}

.pamr-highlighted-menu .nav-link:hover {
  background: var(--theme-red-hover);
  transform: translateY(-2px);
}

.pamr-toggler {
  border: none;
  padding: 0;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--theme-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pamr-toggler:focus {
  box-shadow: none;
}

.pamr-toggler-icon {
  display: inline-block;
  width: 22px;
}

.pamr-toggler-icon span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  margin: 4px 0;
}

@media (max-width: 991.98px) {

  .pamr-header-card {
    border-radius: 26px;
    padding: 10px 18px;
  }

  .pamr-main-header .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: var(--theme-red);
    border-radius: 0 0 26px 26px;
    padding: 14px 20px 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.20);
  }

  .pamr-main-menu .navbar-nav {
    align-items: flex-start;
  }

  .pamr-main-menu .nav-link {
    width: 100%;
    text-align: left;
    padding: 8px 0;
    color: #fff;
  }

  .pamr-main-menu .nav-link.dropdown-toggle::after {
    float: right;
  }

  .pamr-dropdown {
    position: static;
    transform: none !important;
    box-shadow: none;
    padding: 0 0 4px 0;
    background: transparent;
  }

  .pamr-dropdown .dropdown-item {
    padding-left: 0;
  }

  .pamr-highlighted-menu .nav-link {
    margin-top: 8px;
    background: #fff;
    color: var(--theme-red);
    border-color: #fff;
    width: 100%;
    text-align: left;
  }
}

.pamr-main-header.pamr-is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 !important;
  padding: 0;
  z-index: 1300;
}

.pamr-main-header.pamr-is-sticky .pamr-header-card {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  padding: 12px 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.pamr-main-header.pamr-is-sticky .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pamr_vidban_section {
  position: relative;
  margin-top: -143px;
  padding: 60px 100px 40px;
  width: 100%;
  box-sizing: border-box;
  min-height: calc(111vh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  text-align: left;
}

.pamr_vidban_video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.pamr_vidban_content {
  position: relative;
  z-index: 3;
  padding: 0;
}

.pamr_vidban_heading {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: -4px 3px 0px rgba(0, 0, 0, 0.51);
}

.pamr_vidban_subheading {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: -2px 2px 4px rgb(0 0 0 / 90%);
}

.pamr_vidban_btn {
  display: inline-block;
  padding: 10px 40px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s ease;
  background-color: var(--theme-red);
  color: white;
  border: 1px solid #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pamr_vidban_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-red-hover);
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.pamr_vidban_btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pamr_vidban_btn:hover::before {
  transform: translateX(0);
}

.pamr_vidban_stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 4rem;
  gap: 1.5rem;
  color: #fff;
}

.pamr_vidban_stat_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-right: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pamr_vidban_stat_item:hover {
  transform: scale(1.05);
}

.pamr_vidban_stat_item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.pamr_vidban_stat_num_wrapper {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.pamr_vidban_stat_num {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.pamr_vidban_stat_plus {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--theme-red);
  margin-left: 4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.pamr_vidban_stat_label {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 1199px) {
  .pamr_vidban_section {
    padding: 60px 60px 40px;
  }
}

@media (max-width: 991px) {
  .pamr_vidban_section {
    padding: 60px 40px 40px;
    min-height: calc(100vh - var(--header-height));
  }
  .pamr_vidban_heading {
    font-size: 2.75rem;
  }
  .pamr_vidban_subheading {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .pamr_vidban_section {
    justify-content: center;
    margin-top:-165px;
    text-align: center;
    height: auto;
    min-height: calc(100vh - var(--header-height));
    padding: 70px 15px 40px;
  }

  .pamr_vidban_section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .pamr_vidban_content {
    text-align: center;
    width: 100%;
  }

  .pamr_vidban_heading {
    font-size: 2.25rem;
  }
  .pamr_vidban_subheading {
    font-size: 1rem;
  }
  .pamr_vidban_btn {
    padding: 12px 28px;
  }

  .pamr_vidban_stats {
    margin-top: 3rem;
    gap: 1.5rem 1rem;
    justify-content: center;
  }

  .pamr_vidban_stat_item {
    align-items: center;
    text-align: center;
    width: auto;
    padding: 0 0.5rem;
  }

  .pamr_vidban_stat_item:not(:last-child)::after {
    display: none;
  }

  .pamr_vidban_stat_num {
    font-size: 2.5rem;
  }
  .pamr_vidban_stat_plus {
    font-size: 1.5rem;
  }
  .pamr_vidban_stat_label {
    font-size: 0.875rem;
  }
}

.p9k-wwd {
  padding: 80px 0;
  color: var(--theme-dark);
  background: #fff;
  overflow: hidden;
  background: url('../assets/hero-bg-poweramr.png') center/cover no-repeat;
}
.p9k-wwd__shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px
}

.p9k-wwd__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.p9k-wwd__heading {
  grid-column: 1;
  grid-row: 1;
  animation: p9k-fadeUp 0.8s ease forwards
}
.p9k-card--01 {
  grid-column: 2;
  grid-row: 1;
  animation: p9k-fadeUp 0.8s ease 0.1s forwards
}
.p9k-card--02 {
  grid-column: 3;
  grid-row: 1;
  animation: p9k-fadeUp 0.8s ease 0.2s forwards
}
.p9k-card--03 {
  grid-column: 1;
  grid-row: 2;
  animation: p9k-fadeUp 0.8s ease 0.3s forwards
}
.p9k-card--04 {
  grid-column: 2;
  grid-row: 2;
  animation: p9k-fadeUp 0.8s ease 0.4s forwards
}
.p9k-cta {
  grid-column: 3;
  grid-row: 2;
  animation: p9k-fadeUp 0.8s ease 0.5s forwards
}

.p9k-wwd__label {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--theme-red);
  font-size: 12px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: p9k-fadeUp 0.8s ease 0.1s forwards;
}
.p9k-wwd__title {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0;
}

.p9k-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  padding: 28px;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s ease;
}
.p9k-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 16px rgb(0 0 0 / 30%);
}
.p9k-card__badge {
  position: absolute;
  left: 22px;
  top: -18px;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #f3f3f3;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  transition: all .3s ease;
}
.p9k-card:hover .p9k-card__badge {
  background: var(--theme-red);
  color: #fff;
  transform: scale(1.1);
}
.p9k-card__badge i {
  font-size: 26px;
  color: var(--theme-red);
  transition: color .3s ease
}
.p9k-card:hover .p9k-card__badge i {
  color: #fff
}
.p9k-card__ghost {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 56px;
  font-weight: 800;
  color: rgba(8, 9, 13, .08);
  line-height: 1;
}
.p9k-card__title {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--theme-dark)
}
.p9k-card__rule {
  width: 72px;
  height: 3px;
  background: var(--theme-red);
  border-radius: 3px;
  margin: 8px 0 14px;
  transition: width .3s ease;
}
.p9k-card:hover .p9k-card__rule {
  width: 100px
}
.p9k-card__text {
  margin: 0;
  color: var(--theme-text-light);
  line-height: 1.65;
  font-size: 15px
}
.p9k-cta {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background: var(--theme-dark);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s ease;
}
.p9k-cta:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.p9k-cta__img {
  position: absolute;
  inset: 0;
  background: url('../assets/hero-cta-button.png') center/cover no-repeat;
  opacity: .2;
}
.p9k-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 7, 12, .8) 0%, rgba(0, 57, 120, 0.85) 100%)
}
.p9k-cta__body {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: #fff;
}
.p9k-cta__eyebrow {
  opacity: .85;
  font-weight: 700;
  letter-spacing: .12em;
  display: block;
  margin-bottom: 6px;
}
.p9k-cta__title {
  margin: 6px 0 14px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}
.p9k-cta__btn {
  display: inline-block;
  background: var(--theme-red);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s ease;
}
.p9k-cta__btn:hover {
  background: var(--theme-red-hover);
  transform: translateY(-3px) scale(1.05);
}
@keyframes p9k-fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .p9k-wwd__title {
    font-size: 42px
  }
}
@media (max-width: 991px) {
  .p9k-wwd__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }
  .p9k-wwd__heading, .p9k-card--01, .p9k-card--02, .p9k-card--03, .p9k-card--04, .p9k-cta {
    grid-column: auto;
    grid-row: auto
  }
  .p9k-cta__body {
    max-width: 100%;
    text-align: center;
    background: rgba(8, 7, 12, .65);
    border-radius: 12px
  }
}
@media (max-width: 575px) {
  .p9k-wwd {
    padding: 60px 0
  }
  .p9k-wwd__title {
    font-size: 34px
  }
}

#pamr_cta_section {
  background: url('../assets/solar-panel-array-bright-sunlight.jpg') center/cover no-repeat fixed;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pamr-cta-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.pamr-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 50px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  width: 100%;
}

.pamr-cta-main {
  position: relative;
  padding-left: 80px;
  max-width: 700px;
}

.pamr-cta-quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 70px;
  font-weight: 800;
  color: var(--theme-red);
  line-height: 1;
  font-family: serif;
  opacity: 0.9;
}

.pamr-cta-text {
  font-size: 1.35rem !important;
  font-weight: 700;
  color: var(--theme-dark);
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.pamr-cta-subtext {
  font-size: 0.98rem;
  color: var(--theme-text-light);
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.pamr-cta-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--theme-red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 991px) {
  .pamr-cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .pamr-cta-main {
    padding-left: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pamr-cta-quote-icon {
    position: static;
    font-size: 50px;
    margin-bottom: 15px;
  }

  .pamr-cta-text {
    font-size: 1.35rem;
  }

  .pamr-cta-side {
    align-items: center;
    max-width: 100%;
  }

  .pamr-cta-label {
    text-align: center;
  }
}

@media (max-width: 575px) {
  #pamr_cta_section {
    padding: 60px 0;
  }
  .pamr-cta-text {
    font-size: 1.15rem;
  }
}

#who_we_are_section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.wwa-content-wrapper {
}

.section-title-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.wwa-text {
  color: var(--theme-text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.wwa-btn {
  display: inline-block;
  background: var(--theme-red);
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.wwa-btn:hover {
  background: var(--theme-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.wwa-image-wrapper {
  position: relative;
  padding: 20px;
}

.wwa-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 85%;
  background: var(--theme-red);
  border-radius: 12px;
  z-index: 1;
  background-image:  url('../assets/hero-bg-poweramr.png');
  background-size: cover;
  background-position: center;
}

.wwa-image {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .wwa-content-wrapper {
     text-align: center;
  }
   .section-title-wrapper {
     padding-left: 0;
     text-align: center;
     display: flex;
     justify-content: center;
   }
   .p9k-wwd__title { 
     text-align: center;
   }
   .wwa-image-wrapper {
     padding: 0;
     margin-top: 40px;
   }
}
@media (max-width: 767px) {
   #who_we_are_section {
     padding: 60px 0;
   }
   .p9k-wwd__title {
     font-size: 34px;
   }
   .wwa-image-wrapper::before {
     width: 90%;
     height: 90%;
     top: -10px;
     right: -10px;
   }
}

#product_section {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}

.product-header-bg {
 background-color: #EE2837;
 background-image: linear-gradient(rgba(0, 57, 120, 0.85), rgba(0, 57, 120, 0.85)),
    url('../assets/poweramr-product-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.product-carousel-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -200px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin: 15px;
  padding: 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}

.product-card-image {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 5px;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
}

.product-carousel .slick-slide {
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.product-carousel .slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
}

.product-carousel .slick-slide.slick-center .product-card {
  border: 2px solid var(--theme-red);
  box-shadow: 0 15px 40px rgba(238,40,55,0.2);
}

.product-carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

.product-nav-btn {
  background: transparent;
  border: 2px solid var(--theme-text-light);
  color: var(--theme-text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.product-nav-btn:hover {
  background: var(--theme-red);
  border-color: var(--theme-red);
  color: #fff;
}

.product-carousel .slick-arrow,
.product-carousel .slick-dots {
  display: none !important;
}

@media (max-width: 991px) {
  .product-header-bg {
    height: 350px;
    padding-top: 60px;
  }
  .product-carousel-wrapper {
    margin-top: -180px;
  }
  .product-carousel-nav {
    justify-content: center;
  }
}
 @media (max-width: 767px) {
  .product-header-bg {
    height: 300px;
    padding-top: 60px;
  }
  .product-header-bg .section-title {
    font-size: 32px;
  }
  .product-carousel-wrapper {
    margin-top: -150px;
  }
  .product-carousel .slick-slide {
    transform: scale(1);
    opacity: 1;
  }
   .product-carousel .slick-slide.slick-center .product-card {
     border: 2px solid transparent;
     box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   }
   .product-carousel-nav {
     margin-top: 20px;
   }
 }

.customer-grid-section {
    padding-bottom: 80px;
    padding-top:80px;
    background: #fbd3d330;
}

.customer-grid-title {
    text-align: center;
    margin-bottom: 50px;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-items: center;
    gap: 40px 20px;
}

.customer-logo-item {
    width: 100%;
    text-align: center;
}

.customer-logo-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(0%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.customer-logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.subheading-poweramr{
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--theme-red);
    letter-spacing: .12em;
    font-size: 14px;
}

@media (max-width: 991px) {
    .customer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .customer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }
    .customer-logo-item img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .customer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#testimonial_section {
    background: url('../assets/solar-panel-poweramr.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial_section_shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 50px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    width: 100%;
}

.testimonial-content {
    position: relative;
    padding-left: 80px;
    max-width: 700px;
}

.testimonial-quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 70px;
    font-weight: 800;
    color: var(--theme-red);
    line-height: 1;
    font-family: serif;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-dark);
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--theme-red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-navigation {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.testimonial-nav-btn {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.4);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--theme-red);
    border-color: var(--theme-red);
    color: #fff;
    transform: scale(1.1);
}

.carousel-fade .carousel-item {
    transition: opacity .6s ease-in-out;
}

@media (max-width: 991px) {
    .testimonial-wrapper {
      flex-direction: column;
      text-align: center;
      padding: 40px 30px;
    }

    .testimonial-content {
      padding-left: 0;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .testimonial-quote-icon {
      position: static;
      font-size: 50px;
      margin-bottom: 15px;
    }

    .testimonial-text {
      font-size: 1.25rem;
    }

    .testimonial-navigation {
      margin-top: 25px;
    }
}

@media (max-width: 575px) {
    #testimonial_section {
      padding: 60px 0;
    }
    .testimonial-text {
      font-size: 1.1rem;
    }
}

#service_tabs_section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: none;
}

#service_tabs_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/white-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
}

.service-tablist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-btn {
  border: 1px solid #eee;
  background: #fff;
  color: var(--theme-dark);
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: 0.3s ease;
  cursor: pointer;
  font-size: 1.1rem;
}

.tab-btn:hover {
  border-color: var(--theme-red);
  color: var(--theme-red);
}

.tab-btn.active {
  background: var(--theme-red);
  color: #fff;
  border-color: var(--theme-red);
  box-shadow: 0 6px 18px rgba(238, 40, 55, 0.25);
  transform: scale(1.03);
}

.tab-panel {
  display: none;
  animation: fade 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-inner {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.panel-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  background: #fbd3d330;
  padding: 10px;
}

.panel-inner h3 {
  color: var(--theme-dark);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.panel-inner .subtitle {
  color: var(--theme-text-light);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1rem;
}

.panel-inner p {
  color: var(--theme-text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.readmore {
  display: inline-block;
  background: var(--theme-red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.readmore:hover {
  background: var(--theme-red-hover);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .service-tablist {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    scrollbar-width: none;
  }
   .service-tablist::-webkit-scrollbar {
      display: none;
  }
  .tab-btn {
    white-space: nowrap;
    text-align: center;
    flex: 0 0 auto;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .panel-inner {
    padding: 20px;
    text-align: center;
  }
  .panel-inner h3 {
    font-size: 1.5rem;
  }
}

#contact_form_section {
  position: relative;
  padding: 100px 0 180px;
  background: #ffffff;
  overflow: visible;
}

#contact_form_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72%;
  z-index: 0;
  background-color: #17161B;
  background-image: url('../assets/white-solar-panel.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contact-form-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-content-side {
  color: #fff;
}

.contact-lead-text {
  margin-top: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-icon-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon-block .icon {
  width: 64px;
  height: 64px;
  background: var(--theme-red);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 32px;
}

.contact-icon-block h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-form-side {
  background: var(--theme-red);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  transform: translateY(80px);
}

.form-title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 25px;
}

.contact-form .form-control {
  border-radius: 40px;
  padding: 14px 20px;
  border: none;
  background: #fff;
  color: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.contact-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--theme-dark);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  border: none;
  font-size: 16px;
}

.contact-submit-btn:hover {
  background: #000;
}

@media (max-width: 992px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-side {
    transform: translateY(40px);
  }
}

@media (max-width: 576px) {
  .contact-form-side {
    padding: 40px 25px;
  }
}

#gallery_section {
  padding-bottom: 80px;
  background: #ffffff;
}

.gallery-heading {
  margin-bottom: 40px;
}

.gallery-heading .p9k-wwd__title {
  text-align: center;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: #000;
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.gallery-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

@media (max-width: 991.98px) {
  .gallery-card-img {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  #gallery_section {
    padding: 60px 0;
  }
  .gallery-card-img {
    height: 260px;
  }
}

#faq_section {
  padding: 80px 0;
  background: #FEF7F7;
}

.faq-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq-left {
  position: sticky;
  top: 120px;
}

.faq-intro {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--theme-text-light);
}

.faq-cta-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--theme-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease,
              box-shadow 0.25s ease;
}

.faq-cta-btn:hover {
  background: var(--theme-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 40, 55, 0.3);
}

.faq-accordion {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--theme-red);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  padding-right: 16px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 0 14px;
  font-size: 0.95rem;
  color: var(--theme-text-light);
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .faq-left {
    position: static;
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  #faq_section {
    padding: 60px 0;
  }
  .p9k-wwd__title {
    font-size: 32px;
  }
}

.pamr-inner-banner {
  position: relative;
  width: 100%;
  margin-top: -140px;
  padding: calc(var(--header-height, 120px) + 40px) 0 60px;
  color: #fff;
  overflow: hidden;
}

.pamr-inner-banner--about {
  background: url('../assets/about-us-solar-panels-bg.jpg') center center / cover no-repeat;
}

.pamr-inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.pamr-inner-banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 40px 0;
}

.pamr-inner-banner-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 10px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.pamr-breadcrumb {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.pamr-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pamr-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
}

.pamr-breadcrumb a:hover {
  color: var(--theme-red);
}

.pamr-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.7);
}

.pamr-breadcrumb li[aria-current="page"] {
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .pamr-inner-banner {
    padding: calc(var(--header-height, 110px) + 25px) 0 40px;
    margin-top: -120px;
  }
  .pamr-inner-banner-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 767.98px) {
  .pamr-inner-banner {
    margin-top: -170px;
  }
  .pamr-inner-banner-title {
    font-size: 2rem;
  }
}

#about_intro_section {
  padding: 80px 0;
  background: url('../assets/hero-bg-poweramr.png') center/cover no-repeat;
}

.about-intro-top {
  margin-bottom: 40px;
}

.about-intro-title {
  margin-top: 8px;
  margin-bottom: 18px;
}

.about-intro-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 28px;
  border-radius: 999px;
  background: var(--theme-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--theme-red);
  transition: all 0.25s ease;
}

.about-intro-btn:hover {
  background: var(--theme-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 40, 55, 0.3);
}

.about-intro-text {
  color: var(--theme-text-light);
  font-size: 15px;
  line-height: 1.8;
}

.about-story-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background: #000;
}

.about-story-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.about-story-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  color: #ffffff;
}

.about-story-heading {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.about-story-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-pill-card {
  border-radius: 18px;
  padding: 24px 24px;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  background: #f8f8f8;
}

.about-pill-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bs-white);
}

.about-pill-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--bs-white);
  line-height: 1.7;
}

.about-pill-mission {
  background: var(--theme-red);
}

.about-pill-vision {
  background: var(--theme-red);
}

@media (max-width: 991.98px) {
  #about_intro_section {
    padding: 60px 0;
  }
  .about-story-img {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .about-intro-top {
    text-align: left;
  }
  .about-story-img {
    height: 260px;
  }
}

.pamr-counter-strip {
  padding: 0 0 20px;
  background: transparent;
}

.pamr-counter-card {
  max-width: 1270px;
  margin: 0 auto;
  padding: 40px 40px;
  border-radius: 40px;
  background: var(--theme-red);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pamr-counter-item {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  padding-right: 24px;
}

.pamr-counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.pamr-counter-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pamr-counter-icon i {
  font-size: 30px;
  color: #ffffff;
}

.pamr-counter-text {
  color: #ffffff;
}

.pamr-counter-value {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.pamr-counter-value::after {
  content: " +";
  margin-left: 2px;
  font-weight: 800;
}

.pamr-counter-label {
  margin-top: 4px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
  .pamr-counter-card {
    padding: 24px 26px;
    border-radius: 32px;
  }
  .pamr-counter-item {
    flex: 1 1 45%;
    padding-right: 0;
  }
  .pamr-counter-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .pamr-counter-strip {
    padding: 30px 0 10px;
  }
  .pamr-counter-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 26px;
  }
  .pamr-counter-item {
    width: 100%;
  }
}

   .pamr-topbar-social ul li a i.ri-facebook-fill {
   color: #1877F2;
   }
   .pamr-topbar-social ul li a i.ri-linkedin-fill {
   color: #0077B5;
   }
   .pamr-topbar-social ul li a i.ri-instagram-line {
   color: #E4405F;
   }
   .pamr-topbar-social a {
   width: 30px;
   height: 30px;
   border-radius: 10px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: white;
   color: #fff;
   font-size: 15px;
   text-decoration: none;
   transition: all 0.2s ease-in-out;
   }
   
   



   