.header {
  background-color: #f5f5f5;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-graphic {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 100%;
  height: 55px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.logo-nec {
  color: #0066ff;
}

.logo-om {
  color: #00cc00;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown:hover .nav-link {
  color: #00cc00;

  font-weight: 400;
}

.nav-dropdown .nav-link {
  position: relative;
}

.nav-dropdown:hover .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 3px;
  background-color: #00cc00;
  border-radius: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  z-index: 1000;
  
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  margin: 0.15rem 0.15rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #474444;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #e8f5e9 0%, #f1f8f4 100%);
  color: #00cc00;
  font-weight: 400;
}

.dropdown-item.active {
  color: #00cc00;
  font-weight: 400;
}

.nav-link {
  text-decoration: none;
  font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #474444;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  position: relative;
}

.nav-link:hover {
  color: #00cc00;
  font-weight: 400;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: #00cc00;
  border-radius: 2px;
}

.nav-link.active {
  color: #00cc00;
  font-weight: 400;
}

/* Dropdown Arrow - Hidden on desktop, shown on mobile */
.dropdown-arrow {
  display: none;
  margin-left: 0.5rem;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown.dropdown-open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 15px;
  height: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  min-width: 15px;
  min-height: 15px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #474444;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(3.5px, 3.5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(3.5px, -3.5px);
}

.hamburger-menu:hover .hamburger-line {
  background-color: #00cc00;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .header {
    padding: 1rem;
    position: sticky;
  }

  .header-container {
    position: relative;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin-top: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.menu-open {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 1rem 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link:hover {
    background-color: #f8f8f8;
    transform: none;
  }

  .nav-link:hover::after {
    display: none;
  }

  /* Mobile Dropdown Styles */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-arrow {
    display: inline-block;
  }

  .dropdown-menu {
    position: static;
    visibility: visible;
    opacity: 0;
    max-height: 0;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background-color: #f8f8f8;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    pointer-events: none;
    overflow: hidden;
  }

  .nav-dropdown.dropdown-open .dropdown-menu,
  .dropdown-menu.dropdown-visible {
    opacity: 1;
    max-height: 500px;
    padding: 0.5rem 0;
    pointer-events: auto;
  }

  .dropdown-item {
    padding: 0.75rem 2.5rem;
    margin: 0;
    border-bottom: 1px solid #e8e8e8;
    border-left: 3px solid transparent;
  }

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

  .dropdown-item:hover {
    border-left-color: #00cc00;
    background: linear-gradient(90deg, #e8f5e9 0%, #f1f8f4 100%);
  }

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

@media (max-width: 480px) {
  .header {
    padding: 0.75rem;
  }

  .hamburger-menu {
    width: 28px;
    height: 28px;
  }

  .nav-menu.menu-open {
    margin-top: 0.75rem;
  }

  .nav-link {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .dropdown-item {
    padding: 0.65rem 2rem;
    font-size: 0.9rem;
  }
}


.banner {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  backdrop-filter: blur(0.5px);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  margin: 2rem;
}

.banner-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0 0;
  line-height: 1.2;
}

.banner-title-gradient {
  background: linear-gradient(to right, #CBDC00, #0092E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-subtitle {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 1.5rem 0;
}

.banner-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .banner {
    min-height: 500px;
  }

  .banner-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.5rem;
  }

  .banner-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.6rem;
  }

  .banner-subtitle {
    font-size: 1.25rem;
  }

  .banner-description {
    font-size: 0.95rem;
  }
}


.usp-section {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.usp-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  /* background: linear-gradient(to right, 
    #ff6b6b, 
    #4ecdc4, 
    #45b7d1, 
    #96ceb4, 
    #ffeaa7, 
    #dda15e
  ); */
}

.usp-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  /* background: linear-gradient(to right, 
    #a8e6cf, 
    #88d8c0, 
    #b8e0d2
  ); */
}

.usp-content {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.usp-line1 {
  font-family: 'Golos Text', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 0.15rem 0;
  line-height: 1.4;
}

.usp-line2 {
  font-family: 'Golos Text', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 0.15rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.usp-highlight {
  background: linear-gradient(to right, #CBDC00, #0092E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.usp-line3 {
  font-family: 'Golos Text', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #474444;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.usp-dot {
  color: #00cc00;
  display: inline-block;
}

@media (max-width: 768px) {
  .usp-section {
    padding: 4rem 1.5rem;
    min-height: 350px;
  }

  .usp-line1 {
    font-size: 1.5rem;
  }

  .usp-line2,
  .usp-line3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .usp-section {
    padding: 3rem 1rem;
    min-height: 300px;
  }

  .usp-line1 {
    font-size: 1.25rem;
  }

  .usp-line2,
  .usp-line3 {
    font-size: 2rem;
  }
}


.power-parks-section {
  width: 100%;
  background: linear-gradient(45deg, #cbdc0021 0%, #08a3ff21 50%, #e0f7fa 100%);
  padding: 4rem 2rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.power-parks-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.power-parks-card {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.power-parks-card:hover {
  transform: translateY(-4px);
}

.power-parks-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.power-parks-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 500px;
  max-height: 500px;
  overflow: hidden;
}

.power-parks-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  display: block;
}

.power-parks-image-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  border-radius: 24px 0 0 24px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.placeholder-content {
  text-align: center;
  color: white;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.placeholder-content p {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.power-parks-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

.power-parks-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 36px; /* H2 size */
  font-weight: 600;
  color: #474444;
  margin: 0 0 2rem 0;
  line-height: 1.3;
}

.power-parks-features {
  list-style: none;
  line-height: 3rem;
}

.power-parks-feature {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  color: #474444;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkmark-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkmark-icon svg {
  width: 24px;
  height: 24px;
}

.power-parks-stats {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.power-parks-stat-box {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.power-parks-stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--stat-color);
}

.stat-value {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--stat-color);
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.875rem;
  color: #474444;
  text-transform: capitalize;
}

.power-parks-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
}

.nav-tab {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #999999;
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.nav-tab:hover {
  color: #474444;
}

.nav-tab.active {
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
  border-radius: 2px 2px 0 0;
}

@media (max-width: 1024px) {
  .power-parks-content {
    grid-template-columns: 1fr;
  }

  .power-parks-image-wrapper {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }

  .power-parks-image {
    border-radius: 25px;
    min-height: 400px;
  }

  .power-parks-image-placeholder {
    border-radius: 24px 24px 0 0;
  }

  .power-parks-info {
    padding: 2rem;
  }

  .power-parks-title {
    font-size: 28px; /* H2 responsive - tablet */
  }
}

@media (max-width: 768px) {
  .power-parks-section {
    padding: 2rem 1rem;
  }

  .power-parks-image-wrapper {
    height: 350px;
    min-height: 350px;
    max-height: 350px;
  }

  .power-parks-image {
    min-height: 350px;
  }

  .power-parks-info {
    padding: 1.5rem;
  }

  .power-parks-title {
    font-size: 24px; /* H2 responsive - mobile */
  }

  .power-parks-feature {
    font-size: 1rem;
  }

  .power-parks-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .power-parks-stat-box {
    padding: 1.25rem 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .power-parks-navigation {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .nav-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}


.services-section {
  width: 100%;
  background-color: #ffffff;
  padding: 5rem 2rem;
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.services-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #474444;
  margin: 0;
}

.services-explore-link {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0092E9;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.services-explore-link:hover {
  background: linear-gradient(90deg, #00bcd4, #0092E9, #00cc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.services-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.services-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.services-slider-wrapper::before,
.services-slider-wrapper::after {
  content: '';
  flex-shrink: 0;
  width: 0;
}

.services-slider {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  flex: 1;
}

.service-card {
  flex: 0 0 40%;
  min-width: 40%;
  height: 360px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  flex-shrink: 0;
}

.service-card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-card-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-image-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.placeholder-icon-large {
  font-size: 5rem;
  opacity: 0.3;
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.service-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: #ffffff;
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  svg{
    color: #00cc00;
    fill: #00bcd4;
  }
}

.service-icon-symbol {
  font-size: 1.5rem;
  width: 32px;
  /* filter: brightness(0) invert(1); */
  svg{
    width: 100%;
    height: 100%;
  }
}

.service-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: auto;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0;

}

.service-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #00cc00;
  color: #00cc00;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  padding: 0;
}

.service-nav-btn .arrow-icon {
  width: 30%;
  height: 30%;
  transition: all 0.3s ease;
}

.service-nav-btn:hover {
  background: #f7fff7;
  border-color: #00cc00;
  transform: scale(1.1);
}

.service-nav-btn:hover .arrow-icon {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.2);
}

.service-nav-btn:hover.service-nav-btn-right .arrow-icon {
  transform: scaleX(-1) scale(1.1);
  filter: brightness(1.2) saturate(1.2);
}

.service-nav-btn:active {
  transform: scale(0.95);
}

.service-nav-btn:active .arrow-icon {
  transform: scale(0.9);
}

.service-nav-btn:active.service-nav-btn-right .arrow-icon {
  transform: scaleX(-1) scale(0.9);
}

.service-nav-btn-left {
  order: -1;
}

.service-nav-btn-right {
  order: 1;
}

.service-nav-btn-right .arrow-icon {
  transform: scaleX(-1);
}


@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .services-slider {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1.5rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .services-title {
    font-size: 1.6rem;
  }

  .service-card {
    flex: 0 0 85%;
    min-width: 85%;
    height: 466px;
  }

  .services-slider-wrapper {
    padding: 1rem 0;
    gap: 0.5rem;
  }

  .service-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;    
  }

  .service-card-content {
    padding: 2rem;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-description {
    font-size: 1rem;
  }

  .service-card.prev,
  .service-card.next {
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 1.75rem;
  }

  .services-slider-wrapper {
    gap: 0.25rem;
  }

  .service-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .service-card {
    flex: 0 0 90%;
    min-width: 90%;
    height: 466px;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-icon-circle {
    width: 50px;
    height: 50px;
  }

  .service-icon-symbol {
    font-size: 1.25rem;
  }
}


.digital-security-section {
  width: 100%;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

.digital-security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 204, 0, 0.1) 0%, transparent 90%),
    radial-gradient(circle at 80% 70%, rgba(0, 146, 233, 0.1) 0%, transparent 90%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 90%);
  pointer-events: none;
}

.digital-security-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.digital-security-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 0 4rem 0;
  line-height: 1.2;
}

.digital-security-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;

}

.digital-security-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.digital-security-card:hover {
  transform: translateY(-8px);
}

.security-icon-wrapper {
  margin-bottom: 1.5rem;
}

.security-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0A9642;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: auto;
}

.security-icon svg {
  width: 32px;
  height: 32px;
}

.security-card-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin: auto 0 1rem 0;
  line-height: 1.3;
}

.security-card-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

@media (max-width: 1024px) {
  .digital-security-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .digital-security-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .digital-security-section {
    padding: 3rem 1.5rem;
  }

  .digital-security-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .digital-security-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .digital-security-card {
    padding: 2rem;
  }

  .security-card-title {
    font-size: 1.25rem;
  }

  .security-card-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .digital-security-section {
    padding: 2.5rem 1rem;
  }

  .digital-security-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .digital-security-card {
    padding: 1.5rem;
  }

  .security-icon {
    width: 50px;
    height: 50px;
  }

  .security-icon svg {
    width: 20px;
    height: 20px;
  }
}


.blogs-news-section {
  width: 100%;
  background-color: #ffffff;
  padding: 9rem 2rem;
}

.blogs-news-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blogs-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blogs-news-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333333;
  margin: 0;
  line-height: 1.2;
}

.blogs-explore-link {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0092E9;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blogs-explore-link:hover {
  background: linear-gradient(90deg, #00bcd4, #0092E9, #00cc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blogs-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #F5F5F5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(45deg, #cbdc0021 0%, #08a3ff21 50%, #e0f7fa 100%);
}

.blog-card-image-wrapper {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
  border-radius: 12px;
}

.blog-image-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.placeholder-icon {
  font-size: 4rem;
  opacity: 0.3;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;

}

.blog-card-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
  margin-top: auto;
  .arrow {
   svg {
    width: 12px;
  height: 12px;
  transform: rotate(180deg);
   }
  }
}

.blog-read-more:hover {
  gap: 0.5rem;
}

.arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.blog-read-more:hover .arrow {
  transform: translateX(4px);
}

/* When hovering a blog card, show gradient on the Read More link */
.blog-card:hover .blog-read-more {
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 1024px) {
  .blogs-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .blogs-news-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .blogs-news-section {
    padding: 3rem 1.5rem;
  }

  .blogs-news-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .blogs-news-title {
    font-size: 1.6rem;
  }

  .blogs-news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card-image-wrapper {
    height: 200px;
  }

  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blogs-news-section {
    padding: 2.5rem 1rem;
  }

  .blogs-news-title {
    font-size: 1.75rem;
  }

  .blog-card-image-wrapper {
    height: 180px;
  }
}


.footer {
  width: 100%;
  background-color: #f5f5f5;
  padding: 3rem 0rem 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 0;
}

/* Left Section - Branding */
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-slogan {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.slogan-future {
  color: #00cc00;
}

/* Middle Section - Navigation */
.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-nav-heading {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  letter-spacing: 0.5px;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-links li {
  margin: 0;
}

.footer-link {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.95rem;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #00cc00;
}

/* ISO Certifications */
.footer-certifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.iso-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.iso-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.iso-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.iso-number {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.75rem;
  color: #666666;
  text-align: center;
}

/* Right Section - Subscription */
.footer-subscription {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.subscription-heading {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.subscription-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.subscription-input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.95rem;
  color: #333333;
  background: #ffffff;
  transition: border-color 0.3s ease;
}

.subscription-input:focus {
  outline: none;
  border-color: #00cc00;
}

.subscription-input::placeholder {
  color: #999999;
}

.subscription-button {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #00cc00, #0092E9);
  color: #ffffff;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.subscription-button:hover {
  transform: translateY(-2px);
}

.subscription-button:active {
  transform: translateY(0);
}

.subscription-consent {
  margin-top: 0.5rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
}

.consent-checkbox {
  margin-top: 0.2rem;
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.consent-text {
  flex: 1;
}

.consent-link {
  color: #0092E9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.consent-link:hover {
  color: #0077b6;
  text-decoration: underline;
}

/* Bottom Strip */
.footer-bottom {
  width: 100%;
  background: linear-gradient(to right, #0092E9, #00cc00);
  padding: 0.2rem 0;
  margin-top: 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 4px;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
  }

  .footer-nav-columns {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-nav-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-certifications {
    justify-content: center;
  }

  .subscription-form {
    flex-direction: column;
  }

  .subscription-input {
    min-width: 100%;
  }

  .subscription-button {
    width: 100%;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .footer-bottom-container {
    padding: 0 1.5rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 1rem 0;
  }

  .footer-nav-columns {
    grid-template-columns: 1fr;
  }

  .footer-certifications {
    gap: 1rem;
  }

  .iso-logo {
    width: 45px;
    height: 45px;
  }

  .footer-bottom {
    padding: 1.25rem 0;
  }

  .footer-bottom-container {
    padding: 0 1rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
}


.reach-us-page {
  width: 100%;
  background-color: #ffffff;
}

.reach-us-hero {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reach-us-container {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.reach-us-heading {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #474444;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.reach-us-subheading {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #474444;
  margin: 0;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
  width: 100%;
  background: linear-gradient(180deg, #e0f7fa 0%, #f1f8e9 100%);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.contact-form-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.contact-form-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 2rem 0;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-field {
  position: relative;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #474444;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background-image: linear-gradient(#ffffff, #ffffff),
    linear-gradient(to right, #90EE90, #87CEEB);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.form-input-error,
.form-textarea.form-input-error {
  background-image: linear-gradient(#ffffff, #ffffff),
    linear-gradient(to right, #ff6b6b, #ff8787);
}

.form-input-error:focus,
.form-textarea.form-input-error:focus {
  background-image: linear-gradient(#ffffff, #ffffff),
    linear-gradient(to right, #ff5252, #ff6b6b);
}

.field-error {
  display: block;
  color: #ff5252;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-left: 0.25rem;
  font-weight: 400;
}

.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.country-code-select {
  padding: 1rem 0.75rem;
  border: 2px solid transparent;
  border-radius: 8px 0 0 8px;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #474444;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23333%27 d=%27M6 9L1 4h10z%27/%3E%3C/svg%3E"),
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(to right, #90EE90, #87CEEB);
  background-repeat: no-repeat;
  background-position: right 0.75rem center, center, center;
  background-origin: border-box;
  background-clip: padding-box, padding-box, border-box;
  cursor: pointer;
  appearance: none;
  padding-right: 2.5rem;
  min-width: 120px;
  border-right: none;
}

.country-code-select:focus {
  outline:auto;
  background-image:   url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23333%27 d=%27M6 9L1 4h10z%27/%3E%3C/svg%3E"),
  linear-gradient(#ffffff, #ffffff),
  linear-gradient(to right, #90EE90, #87CEEB);
}

.country-code-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.phone-input {
  border-radius: 0 8px 8px 0;
  flex: 1;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background-image: linear-gradient(#ffffff, #ffffff),
    linear-gradient(to right, #00cc00, #0092E9);
}

.phone-input-wrapper:focus-within .country-code-select {
  background-image: linear-gradient(#ffffff, #ffffff),
    linear-gradient(to right, #00cc00, #0092E9);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999999;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Golos Text', sans-serif;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.submit-button {
  padding: 1rem 3rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #90EE90, #87CEEB);
  color: #ffffff;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: linear-gradient(to right, #00cc00, #0092E9);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-button:disabled:hover {
  transform: none;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.form-error {
  background-color: #fee;
  color: #c33;
  border: 2px solid #fcc;
}

.form-success {
  background-color: #efe;
  color: #3c3;
  border: 2px solid #cfc;
}

.contact-form-footer {
  text-align: center;
  padding-top: 1rem;
}

.contact-footer-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #000000;
  margin: 0 0 0.5rem 0;
}

.contact-email {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(to right, #00cc00, #0092E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-email:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .reach-us-hero {
    padding: 3rem 1.5rem;
  }

  .reach-us-heading {
    font-size: 2.5rem;
  }

  .reach-us-subheading {
    font-size: 1.1rem;
  }

  .contact-form-section {
    padding: 3rem 1.5rem;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .contact-form-title {
    font-size: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-actions {
    justify-content: center;
  }

  .submit-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .reach-us-hero {
    padding: 2.5rem 1rem;
  }

  .reach-us-heading {
    font-size: 1.6rem;
  }

  .reach-us-subheading {
    font-size: 1rem;
  }

  .contact-form-section {
    padding: 2.5rem 1rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .phone-input-wrapper {
    flex-direction: column;
  }

  .country-code-select {
    min-width: 100%;
    padding: 0.875rem 0.5rem;
    padding-right: 2rem;
    font-size: 0.95rem;
    border-radius: 8px 8px 0 0;
    border-right: 2px solid transparent;
    border-bottom: none;
  }

  .phone-input {
    border-radius: 0 0 8px 8px;
    border-top: none;
  }
}

/* Office Building Section */
.office-building-section {
  width: 100%;
  background: linear-gradient(180deg, #f1f8e9 0%, #ffffff 100%);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-building-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.office-building-image-wrapper {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.office-building-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.office-building-placeholder {
  display: block;
  width: 100%;
  min-height: 500px;
  background: linear-gradient(180deg, #87CEEB 0%, #e0e0e0 60%, #d4d4d4 100%);
  position: relative;
  padding: 2rem;
}

.building-structure {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.building-facade {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  height: 70%;
  background: #d0d0d0;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.building-windows-left,
.building-windows-right {
  background: #4a90e2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  border: 2px solid #2c5aa0;
}

.building-windows-left::before,
.building-windows-right::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.1) 20px,
    rgba(255, 255, 255, 0.1) 22px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.1) 20px,
    rgba(255, 255, 255, 0.1) 22px
  );
}

.building-center {
  display: flex;
  flex-direction: column;
  background: #d0d0d0;
  position: relative;
}

.building-signage {
  background: #ffffff;
  margin: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 3px solid #87CEEB;
  border-bottom: 3px solid #90EE90;
}

.signage-logo {
  display: flex;
  align-items: center;
}

.signage-logo svg {
  width: 40px;
  height: 40px;
}

.signage-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: lowercase;
}

.signage-ne {
  color: #87CEEB;
}

.signage-co {
  color: #90EE90;
}

.signage-n {
  color: #87CEEB;
}

.building-windows-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  flex-grow: 1;
}

.building-windows-center::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #4a90e2;
  border: 2px solid #2c5aa0;
  border-radius: 4px;
}

.building-entrance {
  width: 80px;
  height: 120px;
  background: #2c2c2c;
  margin: 0 auto 1rem;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.building-entrance::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 80%;
  background: #4a90e2;
  border: 2px solid #2c5aa0;
  border-radius: 2px;
}

.building-ground {
  height: 30%;
  background: linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 100%);
  border-radius: 0 0 8px 8px;
  position: relative;
}

.building-ground::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: #d0d0d0;
}

@media (max-width: 768px) {
  .office-building-section {
    padding: 3rem 1.5rem;
  }

  .office-building-placeholder {
    min-height: 400px;
  }

  .building-signage {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .signage-logo svg {
    width: 30px;
    height: 30px;
  }

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

@media (max-width: 480px) {
  .office-building-section {
    padding: 2.5rem 1rem;
  }

  .office-building-placeholder {
    min-height: 300px;
    padding: 1rem;
  }

  .building-facade {
    grid-template-columns: 0.8fr 1.4fr 0.8fr;
  }

  .building-signage {
    margin: 0.5rem;
    padding: 0.5rem 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .signage-logo svg {
    width: 24px;
    height: 24px;
  }

  .signage-text {
    font-size: 1rem;
  }
}


.coming-soon-page {
  width: 100%;
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.coming-soon-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(203, 220, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 146, 233, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.coming-soon-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.coming-soon-content {
  text-align: center;
 
  border-radius: 24px;
  padding: 4rem 3rem;

}

.coming-soon-icon {
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.coming-soon-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.coming-soon-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-gradient-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #CBDC00, #0092E9);
  margin: 0 auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .coming-soon-page {
    padding: 3rem 1.5rem;
    min-height: calc(100vh - 60px);
  }

  .coming-soon-content {
    padding: 3rem 2rem;
  }

  .coming-soon-title {
    font-size: 1.6rem;
  }

  .coming-soon-description {
    font-size: 1.1rem;
  }

  .coming-soon-icon svg {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .coming-soon-page {
    padding: 2rem 1rem;
  }

  .coming-soon-content {
    padding: 2.5rem 1.5rem;
  }

  .coming-soon-title {
    font-size: 1.75rem;
  }

  .coming-soon-description {
    font-size: 1rem;
  }

  .coming-soon-icon svg {
    width: 80px;
    height: 80px;
  }
}


.sustainability-page {
  width: 100%;
  min-height: calc(100vh - 80px);
  background: #ffffff;
  padding-top: 2rem;
}

/* Carbon Reduction Goals Section */
.sustainability-goals-section {
  padding: 3rem 1.5rem;
  background: #ffffff;
}

.sustainability-goals-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sustainability-goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.sustainability-goal-card {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.sustainability-goal-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 0.5rem 0;
}

.sustainability-goal-subtitle {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #474444;
  margin: 0 0 2rem 0;
  font-weight: 500;
}

.sustainability-chart-container {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.sustainability-chart {
  width: 100%;
  height: auto;
}

.sustainability-chart-percentage {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  fill: #0A9642;
}

.sustainability-chart-label {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  fill: #2b2b2b;
}

.sustainability-goal-year {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2b2b2b;
  margin-top: 1rem;
}

.sustainability-goals-tagline {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.sustainability-tagline-word {
  background: linear-gradient(180deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sustainability-tagline-word-dark {
  background: linear-gradient(180deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sustainability-tagline-separator {
  color: #474444;
  margin: 0 0.5rem;
}

/* Quote Section */
.sustainability-quote-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
}

.sustainability-quote-container {
  max-width: 1000px;
  margin: 0 auto;
}

.sustainability-quote {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  color: #2e7d32;
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  font-style: normal;
}

.sustainability-quote::before,
.sustainability-quote::after {
  content: none;
}

/* Content Section */
.sustainability-content-section {
  padding: 4rem 1.5rem;
  background: #ffffff;
}

.sustainability-content-container {
  max-width: 900px;
  margin: 0 auto;
}

.sustainability-paragraph {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #474444;
  margin: 0 0 2.5rem 0;
  text-align: justify;
}

.sustainability-paragraph:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .sustainability-goals-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sustainability-goal-card {
    max-width: 350px;
  }

  .sustainability-quote {
    font-size: 1.5rem;
  }

  .sustainability-paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .sustainability-page {
    padding-top: 1rem;
  }

  .sustainability-goals-section {
    padding: 2rem 1rem;
  }

  .sustainability-goals-grid {
    gap: 2.5rem;
  }

  .sustainability-goal-title {
    font-size: 1.75rem;
  }

  .sustainability-goal-subtitle {
    font-size: 0.95rem;
  }

  .sustainability-chart-container {
    max-width: 240px;
  }

  .sustainability-chart-percentage {
    font-size: 2rem;
  }

  .sustainability-chart-label {
    font-size: 0.8rem;
  }

  .sustainability-goals-tagline {
    font-size: 1rem;
    padding-top: 1.5rem;
  }

  .sustainability-quote-section {
    padding: 3rem 1.5rem;
  }

  .sustainability-quote {
    font-size: 1.3rem;
  }

  .sustainability-content-section {
    padding: 3rem 1.5rem;
  }

  .sustainability-paragraph {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .sustainability-goals-section {
    padding: 1.5rem 1rem;
  }

  .sustainability-goal-title {
    font-size: 1.5rem;
  }

  .sustainability-chart-container {
    max-width: 200px;
  }

  .sustainability-chart-percentage {
    font-size: 1.75rem;
  }

  .sustainability-chart-label {
    font-size: 0.75rem;
  }

  .sustainability-goal-year {
    font-size: 1.25rem;
  }

  .sustainability-goals-tagline {
    font-size: 0.9rem;
  }

  .sustainability-quote-section {
    padding: 2.5rem 1rem;
  }

  .sustainability-quote {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .sustainability-content-section {
    padding: 2.5rem 1rem;
  }

  .sustainability-paragraph {
    font-size: 0.95rem;
    text-align: left;
  }
}

.our-story-page {
  width: 100%;
  background-color: #ffffff;
}

.our-story-hero {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.our-story-hero::before,
.our-story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Soft curved accents inspired by brand colors */
.our-story-hero::before {
  background: linear-gradient(44deg, #cadc0021 0%, #0092e921 100% 100%);
}

.our-story-hero::after {
  background:url(/assets/images/our-story-banner.fdd33031ad55a7ba1d17.png) no-repeat center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-story-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  text-align: center;
}

.our-story-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #474444;
  line-height: 1.35;
  margin: 0 0 0.75rem 0;
}

.our-story-gradient-text {
  background: linear-gradient(90deg, #6bb300 0%, #0092E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.our-story-subtitle {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.75rem;
  color: #373737;
  margin: 0;
  opacity: 1;
  width: 55%;
  text-align: center;
  margin: 0 auto;
}

.our-story-content {
  background: #ffffff;
}

.our-story-content-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 0;
}

.our-story-heading {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #474444;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

.our-story-paragraph {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #474444;
  margin: 0 0 1.25rem 0;
}

.our-story-lead {
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .our-story-hero {
    min-height: 420px;
    padding: 5rem 2rem;
  }
  .our-story-title {
    font-size: 2.4rem;
  }
  .our-story-subtitle {
    font-size: 1.125rem;
  }
  .our-story-content-inner {
    padding: 5rem 0;
  }
  .our-story-heading {
    font-size: 1.75rem;
  }
  .our-story-paragraph {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .our-story-title {
    font-size: 2.8rem;
  }
  .our-story-subtitle {
    font-size: 1.15rem;
  }
  .our-story-heading {
    font-size: 1.875rem;
  }
  .our-story-paragraph {
    font-size: 1.1rem;
  }
}



.mv-section {
  background: #ffffff;
  padding: 2rem 1rem 3rem 1rem;
}

.mv-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.mv-card {
  border-radius: 14px;
  padding: 5.12rem 5.43rem;
  background:linear-gradient(158deg, #d1ffd1 7%, rgba(0, 146, 233, 0.12) 77.15%);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mv-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 2.18rem 0;
}

.mv-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
  color: #3C3C3C;
}

@media (min-width: 768px) {
  .mv-section {
    padding: 2.5rem 1.5rem 4rem 1.5rem;
  }

  .mv-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .mv-card {
    padding: 1.75rem;
  }

  .mv-title {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .mv-section {
    padding: 3rem 2rem 4.5rem 2rem;
  }

  .mv-card {
    padding: 2rem;
  }

  .mv-title {
    font-size: 1.75rem;
  }

  .mv-text {
    font-size: 1.0625rem;
  }
}
.cv-section {
  background: #ffffff;
  padding: 1.5rem 1rem 2.5rem 1rem;
}

.cv-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cv-card {
  position: relative;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  padding: 2.25rem 1rem 2.25rem 1rem;
}

/* Gradient border ring */
.cv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(180deg, #0092E9 0%, #CBDC00 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cv-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem auto;
  border-radius: 9999px;
  background: #0a9b43;
  display: grid;
  place-items: center;
}

.cv-title {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #333333;
  font-size: 1.4rem;
}

@media (min-width: 640px) {
  .cv-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cv-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}



.leadership-page {
  background: #ffffff;
}

.leadership-header {
  position: relative;
  isolation: isolate;
  padding: 2.5rem 1rem 1.5rem 1rem;
  text-align: center;
  background: #ffffff;
}


.lt-section {
  position: relative;
  background: linear-gradient(44deg, #cbdc0061 0%, #0092e961 100% 100%);
  padding: 2.5rem 1rem 3.5rem 1rem;
  overflow: hidden;
  margin:2rem 0 0;
}

.lt-section::before,
.lt-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* soft wave accents similar to provided reference */
.lt-section::before {
  background:
    radial-gradient(1200px 260px at -10% 110%, rgba(0,146,233,0.10), transparent 70%),
    radial-gradient(1100px 300px at 110% 105%, rgba(203,220,0,0.14), transparent 70%);
}

.lt-section::after {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0.0) 40%),
    linear-gradient(to top, rgba(255,255,255,0.35), rgba(255,255,255,0.0) 40%);
}

.lt-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.lt-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

.lt-text {
  font-family: 'Golos Text', sans-serif;
}

.lt-heading {
  font-weight: 700;
  color: #474444;
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 0 0 0.75rem 0;
}

.lt-paragraph {
  color: #474444;
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

.lt-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem; /* space for overhanging bio card on mobile */
}

.lt-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  background:
    radial-gradient(130% 130% at 0% 100%, rgba(107,179,0,0.55) 0%, rgba(107,179,0,0.00) 60%),
    radial-gradient(120% 120% at 100% 0%, rgba(0,146,233,0.55) 0%, rgba(0,146,233,0.00) 58%),
    linear-gradient(0deg, #eef4f9 0%, #eef4f9 100%);
  border: 1px solid #e3edf6;
}

.lt-photo {
  display: block;
  width: 360px;
  height: 460px;
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
}

.lt-bio-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  text-align: center;
}

.lt-name {
  font-weight: 700;
  color: #474444;
  font-size: 1rem;
}

.lt-role {
  font-size: 0.75rem;
  color: #474444;
}

@media (min-width: 900px) {
  .lt-row {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .lt-row-reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .lt-photo {
    width: 420px;
    height: 520px;
  }
  .lt-visual {
    padding-bottom: 0;
  }
}



.goc-page {
  background: #ffffff;
}

.goc-hero {
  padding: 2.5rem 1rem 2rem 1rem;
  text-align: center;
}

.goc-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.goc-title {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #474444;
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.goc-subtitle {
  font-family: 'Golos Text', sans-serif;
  color: #4b4b4b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 900px) {
  .goc-title {
    font-size: 1.85rem;
  }
  .goc-subtitle {
    font-size: 1rem;
  }
}




.gct-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf2 35%, #eef8ff 100%);
  padding: 5rem 2rem;
}

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

.gct-tabs {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  width: 100%;
}

.gct-tab {
  border: 0;
  background: transparent;
  color: #8a8a8a;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 0.25rem;
  cursor: pointer;
  position: relative;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.gct-tab.active {
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, #6bb300, #0092e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gct-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #6bb300, #0092e9);
}

.gct-panel {
  margin-top: 1rem;
  background: linear-gradient(180deg, rgba(0,146,233,0.06), rgba(203,220,0,0.06));
  border-radius: 14px;
  padding: 1rem;
}

.gct-entity-title {
  margin: 0 0 0.25rem 0;
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #474444;
}

.gct-brand {
  color: #6bb300;
}

.gct-brand-blue {
  color: #0092e9;
}

.gct-entity-desc {
  margin: 0 0 1rem 0;
  color: #474444;
  font-size: 0.92rem;
  line-height: 1.7;
}

.gct-cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.9rem;
}

.gct-card {
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.gct-card-media {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.gct-card-media.gct-card-media--map {
  height: 220px;
}

.gct-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gct-card-media .interactive-map-container {
  height: 100%;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.gct-card-media .interactive-map-container .leaflet-container {
  height: 100% !important;
  width: 100% !important;
}

@media (min-width: 900px) {
  .gct-card-media {
    height: 140px;
  }
  .gct-card-media.gct-card-media--map {
    height: 200px;
  }
}

.gct-card-caption {
  padding: 0.65rem 0.8rem;
  color: #474444;
  font-size: 0.82rem;
}

@media (min-width: 900px) {
  .gct-section {
    padding: 1.75rem 1rem 3rem 1rem;
  }
  .gct-entity-title {
    font-size: 1.05rem;
  }
  .gct-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .gct-cards-nhppl {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .gct-card-media img {
    height: 140px;
  }
}



/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/assets/images/layers.416d91365b44e4b4f477.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/assets/images/layers-2x.8f2c4d11474275fbc161.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/assets/images/marker-icon.2b3e1faf89f94a483539.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.interactive-map-container {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  background: #f8f9fa;
}

/* Clean, light map tiles – reduce default Leaflet UI noise */
.interactive-map-container .leaflet-container {
  height: 100% !important;
  width: 100% !important;
  font-family: 'Golos Text', sans-serif;
  background: #f2f4f5 !important;
}

.interactive-map-container .leaflet-tile-pane {
  filter: saturate(0.85) brightness(1.02);
}

.custom-marker {
  background: transparent !important;
  border: none !important;
}

/* Prominent location pin – clear and visible on clean map */
.map-pin-outer {
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, #00a86b 0%, #0092e9 50%, #00bcd4 100%);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(0, 146, 233, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-inner {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Pin + location name on map */
.map-pin-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-label {
  margin-top: 2px;
  padding: 2px 8px;
  font-family: 'Golos Text', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-popup {
  font-family: 'Golos Text', sans-serif;
  min-width: 200px;
}

.map-popup-title {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #2b2b2b;
  background: linear-gradient(90deg, #00cc00, #0092E9, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-popup-description {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #474444;
  line-height: 1.5;
}

.map-popup-capacity {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.85rem;
  color: #6a6a6a;
}

.map-popup-capacity strong {
  color: #2b2b2b;
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-tip {
  background: white;
}

@media (max-width: 768px) {
  .interactive-map-container {
    height: 400px;
  }
}

.cs-section {
  background: #ffffff;
  padding: 4rem 2rem;
}

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

.cs-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.cs-logo {
  width: 34px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5bc85b, #a7f000);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cs-title {
  margin: 0;
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #474444;
  font-size: 1rem;
}

.cs-brand {
  color: #2aa100;
}

.cs-description {
  margin: 0 0 1rem 0;
  color: #474444;
  font-size: 0.92rem;
  line-height: 1.7;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.9rem;
}

.cs-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.cs-media {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.cs-media.cs-media--map {
  height: 220px;
}

.cs-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-media .interactive-map-container {
  height: 100%;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.cs-media .interactive-map-container .leaflet-container {
  height: 100% !important;
  width: 100% !important;
}

.cs-caption {
  padding: 0.65rem 0.8rem;
  color: #474444;
  font-size: 0.82rem;
}

@media (min-width: 900px) {
  .cs-section {
    padding: 3rem 1.15rem;
  }
  .cs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cs-media.cs-media--map {
    height: 200px;
  }
}




.infra-page {
  background: #ffffff;
}

.infra-section {
  padding: 3rem 1rem;
  background: linear-gradient(47deg, #d5fbd061 0%, #62a9dc61 100%);
}

.infra-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

.infra-map {
  overflow: hidden;
  border-radius: 12px;
  height: 500px;
  position: relative;
  z-index: 1;
}

.infra-map-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .infra-map {
    height: 400px;
  }
}

.infra-content {
  font-family: 'Golos Text', sans-serif;
}

.infra-title {
  margin: 0 0 0.75rem 0;
  color: #2b2b2b;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
}

.infra-paragraph {
  margin: 0 0 1.25rem 0;
  color: #474444;
  font-size: 0.98rem;
  line-height: 1.8;
}

.infra-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.infra-stat {
  padding: 1px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(107,179,0,0.45), rgba(0,146,233,0.45));
}

.infra-stat-inner {
  background: #ffffff;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  text-align: center;
}

.infra-num {
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(90deg, #6bb300, #0092e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.infra-label {
  color: #6a6a6a;
  font-size: 0.7rem;
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

@media (min-width: 980px) {
  .infra-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
  .infra-title {
    font-size: 1.9rem;
  }
  .infra-num {
    font-size: 1.4rem;
  }
  .infra-label {
    font-size: 0.72rem;
  }
}




.solutions-diff {
  padding: 2.5rem 1rem 1.5rem 1rem;
  background: #ffffff;
}

.solutions-diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Golos Text', sans-serif;
}

.solutions-diff-title {
  margin: 0 0 1.5rem 0;
  color: #2b2b2b;
}

.solutions-diff-subtitle {
  margin: 0 0 1.2rem 0;
  color: #474444;
  font-size: 0.95rem;
  font-weight: 600;
}

.solutions-diff-text {
  color: #474444;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  text-align: justify;
}

.solutions-diff-stats {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 750px;
  margin: auto;
}

.solutions-diff-stat {
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107,179,0,0.45), rgba(0,146,233,0.45));
}

.solutions-diff-stat-inner {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.solutions-diff-num {
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  background: linear-gradient(90deg, #6bb300, #0092e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-diff-caption {
  color: #6a6a6a;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  line-height: 1.4;
}

.solutions-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 4rem 1.5rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3faf2 35%, #eef8ff 100%);
  overflow: hidden;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 280px at -10% 100%, rgba(0, 146, 233, 0.08), transparent 70%),
    radial-gradient(1100px 300px at 110% 105%, rgba(203, 220, 0, 0.12), transparent 70%);
}

.solutions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0.0) 40%),
    linear-gradient(to top, rgba(255,255,255,0.4), rgba(255,255,255,0.0) 40%);
}

.solutions-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  text-align: center;
}

.solutions-title {
  margin: 0;
  line-height: 1.35;
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #474444;
}

.solutions-gradient-text {
  background: linear-gradient(90deg, #6bb300 0%, #0092E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-rhes {
  padding: 3rem 0rem;
  background: linear-gradient(45deg, #cbdc0020 0%, #0092E921 100%);
}

.solutions-rhes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.solutions-rhes-title {
  margin: 0 0 2rem 0;
  text-align: center;
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #2b2b2b;
}

.solutions-rhes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: center;
}

.solutions-rhes-media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.solutions-rhes-content {
  font-family: 'Golos Text', sans-serif;
  text-align: justify;
}

.solutions-rhes-subtitle {
  margin: 0 0 0.5rem 0;
  color: #2b2b2b;
  font-weight: 700;
}

.solutions-rhes-content p {
  margin: 0 0 0.75rem 0;
  color: #474444;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .solutions-diff {
    padding: 3rem 1rem 2rem 1rem;
  }
  .solutions-diff-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .solutions-hero {
    min-height: 420px;
    padding: 5rem 2rem;
  }
  .solutions-title {
    font-size: 1.6rem;
  }
  
  .solutions-rhes-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
  }
  .solutions-rhes-media img {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .solutions-title {
    font-size: 2.4rem;
  }
  .solutions-rhes-media img {
    height: 360px;
  }
}



.solutions-innov {
  background: #ffffff;
  padding: 2.25rem 1rem 2.75rem 1rem;
}

.solutions-innov-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-innov-title {
  margin: 0;
  text-align: center;
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #2b2b2b;
}

.solutions-innov-subtitle {
  margin: 0.35rem 0 1.25rem 0;
  text-align: center;
  color: #6a6a6a;
  font-size: 0.95rem;
}

.solutions-innov-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: auto;
}

.innov-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
}

.innov-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 600ms ease;
}

.innov-card-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.0) 40%);
}

.innov-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
}

.my-icons {
  width: 20px;
  height: 20px;
 
}
.innov-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.075rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.25rem 0;
}

.innov-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  transition: opacity 600ms ease, max-height 600ms ease, transform 600ms ease;
  transform: translateY(6px);
}

.innov-card:hover .innov-card-bg,
.innov-card:focus-within .innov-card-bg {
  filter: brightness(0.6);
}

.innov-card:hover .innov-list,
.innov-card:focus-within .innov-list {
  opacity: 1;
  max-height: 300px;
  transform: translateY(0);
}

@media (min-width: 980px) {
  .solutions-innov-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .innov-card {
    height: 340px;
  }
}

/* Solution Page Styles (for individual solution pages) */
.solution-page {
  width: 100%;
  background-color: #ffffff;
}

.solution-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.solution-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.solution-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solution-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.solution-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  padding: 2rem;
}

.solution-hero-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solution-hero-subtitle {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solution-content {
  background: #ffffff;
  padding: 4rem 1.5rem;
}

.solution-content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.solution-heading {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #474444;
  font-size: 1.75rem;
  margin: 0 0 1.5rem 0;
}

.solution-paragraph {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #474444;
  margin: 0 0 1.25rem 0;
}

@media (min-width: 768px) {
  .solution-hero {
    min-height: 600px;
    padding: 5rem 2rem;
  }

  .solution-hero-title {
    font-size: 3.5rem;
  }

  .solution-hero-subtitle {
    font-size: 1.5rem;
  }

  .solution-content {
    padding: 5rem 2rem;
  }

  .solution-heading {
    font-size: 2.25rem;
  }

  .solution-paragraph {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .solution-hero {
    min-height: 700px;
  }

  .solution-hero-title {
    font-size: 4rem;
  }

  .solution-hero-subtitle {
    font-size: 1.5rem;
  }

  .solution-heading {
    font-size: 2.5rem;
  }

  .solution-paragraph {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .solution-hero {
    min-height: 400px;
    padding: 3rem 1rem;
  }

  .solution-hero-title {
    font-size: 2rem;
  }

  .solution-hero-subtitle {
    font-size: 1rem;
  }

  .solution-content {
    padding: 3rem 1rem;
  }
}


.blogs-page {
  background: #ffffff;
}

.blogs-hero {
  padding: 2.5rem 1rem 1rem 1rem;
}

.blogs-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Golos Text', sans-serif;
}

.blogs-title {
  margin: 0;
  font-weight: 700;
  color: #2b2b2b;
}

.blogs-subtitle {
  margin: 0.35rem 0 1.25rem 0;
  color: #6a6a6a;
  font-size: 0.95rem;
}

.blogs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2em;
}

.blog-chip {
  position: relative;
  padding: 0.4rem 0.8rem;
  border-radius: 24px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1.5px solid transparent; /* required for gradient border trick */
  /* gradient border with white fill */
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #6bb300, #0092e9) border-box;
  color: #474444;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.blog-chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, #6bb300, #0092e9);
  color: #ffffff;
}

.blog-chip:hover:not(.active) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #7fca1a, #27a6ff) border-box;
  color: #1b5e85;
}

.blog-chip:focus-visible {
  outline: none;
}

.blogs-grid-wrap {
  padding: 0 1rem 2.5rem 1rem;
}

.blogs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5 ;
  padding: 1rem;
}

.blog-thumb img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-body {
  padding: 0.9rem 1rem 1.1rem 1rem;
}

.blog-card-title {
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f2937;
}

.blog-excerpt {
  margin: 0 0 0.75rem 0;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0a7ec2;
  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 900px) {
  .blogs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .blog-thumb img {
    height: 200px;
  }
}
.blog-detail-page {
  width: 100%;
  background-color: #ffffff;
}

/* Banner Section */
.blog-detail-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-detail-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-detail-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.blog-detail-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  color: #ffffff;
}

.blog-detail-banner-inner {
  text-align: center;
}

.blog-detail-category {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(to right, #90EE90, #87CEEB);
  color: #000000;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.blog-detail-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-detail-meta {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  color: #e0e0e0;
  margin: 0;
}

/* Content Section */
.blog-detail-content {
  width: 100%;
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-detail-article {
  width: 100%;
}

/* Introduction */
.blog-detail-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
}

.blog-detail-intro-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #474444;
  margin: 0 0 1.5rem 0;
}

.blog-detail-intro-text:last-child {
  margin-bottom: 0;
}

/* Sections */
.blog-detail-section {
  margin-bottom: 3rem;
}

.blog-detail-section-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
  background: linear-gradient(to right, #00cc00, #0092E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-detail-subtitle {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #474444;
  margin: 2rem 0 1rem 0;
}

.blog-detail-paragraph {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444444;
  margin: 0 0 1.5rem 0;
}

.blog-detail-paragraph strong {
  color: #000000;
  font-weight: 600;
}

.blog-detail-list {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444444;
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-detail-list li {
  margin-bottom: 1rem;
}

.blog-detail-list li:last-child {
  margin-bottom: 0;
}

.blog-detail-list li strong {
  color: #000000;
  font-weight: 600;
}

/* Conclusion */
.blog-detail-conclusion {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e0e0e0;
}

.blog-detail-highlight {
  background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #00cc00;
  font-style: italic;
  margin-top: 2rem;
}

/* References */
.blog-detail-references {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e0e0e0;
}

.blog-detail-references-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #474444;
  margin: 0 0 1.5rem 0;
}

.blog-detail-references-list {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #444444;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-detail-references-list li {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.blog-detail-references-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00cc00;
  font-weight: bold;
  font-size: 1.5rem;
}

.blog-detail-link {
  color: #0092E9;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s ease;
}

.blog-detail-link:hover {
  color: #00cc00;
  text-decoration: underline;
}

/* Actions */
.blog-detail-actions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
  text-align: center;
}

.blog-detail-back-button {
  padding: 1rem 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  background: linear-gradient(to right, #90EE90, #87CEEB);
  color: #000000;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-detail-back-button:hover {
  background: linear-gradient(to right, #00cc00, #0092E9);
  color: #ffffff;
  transform: translateY(-2px);
}

.blog-detail-back-button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-detail-banner {
    height: 400px;
  }

  .blog-detail-title {
    font-size: 2rem;
  }

  .blog-detail-meta {
    font-size: 1rem;
  }

  .blog-detail-content {
    padding: 3rem 1.5rem;
  }

  .blog-detail-intro-text {
    font-size: 1.125rem;
  }

  .blog-detail-section-title {
    font-size: 1.75rem;
  }

  .blog-detail-subtitle {
    font-size: 1.25rem;
  }

  .blog-detail-paragraph,
  .blog-detail-list {
    font-size: 1rem;
  }

  .blog-detail-back-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-detail-banner {
    height: 350px;
  }

  .blog-detail-banner-content {
    padding: 0 1rem;
  }

  .blog-detail-title {
    font-size: 1.75rem;
  }

  .blog-detail-category {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .blog-detail-content {
    padding: 2.5rem 1rem;
  }

  .blog-detail-section-title {
    font-size: 1.5rem;
  }

  .blog-detail-list {
    padding-left: 1.5rem;
  }
}

.news-updates-page {
  background: #ffffff;
}

.news-updates-hero {
  padding: 2.5rem 1rem 1rem 1rem;
}

.news-updates-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Golos Text', sans-serif;
}

.news-updates-title {
  margin: 0;
  font-weight: 700;
  color: #2b2b2b;
}

.news-updates-subtitle {
  margin: 0.35rem 0 1.25rem 0;
  color: #6a6a6a;
  font-size: 0.95rem;
}

.news-updates-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2em;
}

.news-chip {
  position: relative;
  padding: 0.4rem 0.8rem;
  border-radius: 24px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #6bb300, #0092e9) border-box;
  color: #474444;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.news-chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, #6bb300, #0092e9);
  color: #ffffff;
}

.news-chip:hover:not(.active) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #7fca1a, #27a6ff) border-box;
  color: #1b5e85;
}

.news-chip:focus-visible {
  outline: none;
}

.news-updates-grid-wrap {
  padding: 0 1rem 2.5rem 1rem;
}

.news-updates-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.news-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.news-thumb img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-body {
  padding: 0.9rem 1rem 1.1rem 1rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.news-category {
  color: #00cc00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-date {
  color: #6a6a6a;
  font-weight: 400;
}

.news-card-title {
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f2937;
}

.news-excerpt {
  margin: 0 0 0.75rem 0;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0a7ec2;
  font-weight: 600;
  text-decoration: none;
}

.news-link:hover {
  color: #0066cc;
  text-decoration: underline;
}

@media (min-width: 900px) {
  .news-updates-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .news-thumb img {
    height: 200px;
  }
}


.innovation-page {
  width: 100%;
  background-color: #ffffff;
}

.innovation-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.innovation-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.innovation-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.innovation-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.5) 100%);
}

.innovation-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  padding: 2rem;
}

.innovation-hero-quote {
  font-family: 'Golos Text', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.innovation-invest-section {
  background: #ffffff;
  padding: 4rem 1.5rem;
}

.innovation-invest-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.innovation-invest-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #474444;
  text-align: center;
  margin: 0 0 1.5rem 0;
}

.innovation-invest-divider {
  width: 100%;
  height: 1px;
  border-top: 2px dotted #cccccc;
  margin: 0 0 3rem 0;
}

.innovation-invest-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.innovation-invest-column {
  width: 100%;
}

.innovation-invest-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #474444;
  margin: 0;
  text-align: left;
}

.innovation-principles-section {
  background: #ffffff;
  padding: 4rem 1.5rem;
}

.innovation-principles-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.innovation-principles-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #474444;
  text-align: center;
  margin: 0 0 3rem 0;
}

.innovation-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.innovation-principle-card {
  position: relative;
  min-height: 300px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.innovation-principle-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.innovation-principle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.innovation-principle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.7) 100%);
}

.innovation-principle-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  margin: auto;
}

.innovation-principle-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.innovation-principle-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.sharp-decision-section {
  background: #ffffff;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sharp-decision-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.sharp-decision-quote {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.001em;
}

.font-size-26 {
  font-size: 26px;
}

.sharp-decision-green {
  background: linear-gradient(68deg, #CBDC00 -23.15%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sharp-decision-blue {
  color: #0092E9;
}

.sharp-decision-grey {
  color: #474444;
}

.rd-difference-section {
  background: linear-gradient(to right, #e8f4f8 0%, #d4e8f0 100%);
  padding: 4rem 1.5rem;
}

.rd-difference-container {
  max-width: 1400px;
  margin: 0 auto;
}

.rd-difference-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 3rem 0;
  text-align: center;
  width: 100%;
}

.rd-difference-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.rd-difference-image-wrapper {
  width: 100%;
  height: 50%;
  border-radius: 8px;
  overflow: hidden;
}

.rd-difference-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rd-difference-content {
  width: 100%;
}

.rd-difference-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.rd-difference-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rd-difference-icon {
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.rd-difference-card-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 1rem 0;
}

.rd-difference-card-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #474444;
  margin: 0;
}

.innovation-content {
  background: #ffffff;
}

.innovation-content-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.innovation-heading {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  color: #474444;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

.innovation-paragraph {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #474444;
  margin: 0 0 1.25rem 0;
}

.innovation-lead {
  font-size: 1.05rem;
}

.vawt-innovation-card-icon {
  margin-bottom: 1rem;

  .vawt-innovation-icon-circle {
    svg {
      width: 32px;
      height: 32px;
    }
  }
}


@media (min-width: 768px) {
  .innovation-hero {
    min-height: 600px;
    padding: 5rem 2rem;
  }

  .innovation-hero-quote {
    font-size: 3rem;
  }

  .innovation-invest-section {
    padding: 5rem 2rem;
  }

  .innovation-invest-title {
    font-size: 2.25rem;
  }

  .innovation-invest-columns {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .innovation-invest-text {
    font-size: 1.0625rem;
  }

  .innovation-principles-section {
    padding: 2rem;
  }

  .innovation-principles-title {
    font-size: 2.25rem;
    margin: 0 0 4rem 0;
  }

  .innovation-principles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .innovation-principle-card {
    min-height: 350px;
  }

  .innovation-principle-content {
    padding: 2.5rem;
  }

  .innovation-principle-title {
    font-size: 1.75rem;
  }

  .innovation-principle-description {
    font-size: 1.0625rem;
  }

  .sharp-decision-section {
    padding: 5rem 2rem;
  }

  .sharp-decision-quote {
    font-size: 2rem;
  }

  .rd-difference-section {
    padding: 5rem 2rem;
  }

  .rd-difference-title {
    font-size: 2.25rem;
    margin: 0 0 4rem 0;
  }

  .rd-difference-layout {
    grid-template-columns: 0.50fr 1fr;
    gap: 1rem;
  }

  .rd-difference-image-wrapper {
    height: 100%;
  }

  .rd-difference-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .rd-difference-card {
    padding: 2rem;
  }

  .rd-difference-card-title {
    font-size: 1.375rem;
  }

  .rd-difference-card-description {
    font-size: 1.0625rem;
  }

  .innovation-content-inner {
    padding: 5rem 2rem;
  }

  .innovation-heading {
    font-size: 1.75rem;
  }

  .innovation-paragraph {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .innovation-hero {
    min-height: 700px;
  }

  .innovation-hero-quote {
    font-size: 3.5rem;
  }

  .innovation-invest-section {
    padding: 6rem 2rem;
  }

  .innovation-invest-title {
    font-size: 2.5rem;
  }

  .innovation-invest-columns {
    gap: 4rem;
  }

  .innovation-invest-text {
    font-size: 1.1rem;
  }

  .innovation-principles-section {
    padding: 2rem 2rem;
  }

  .innovation-principles-title {
    font-size: 2.5rem;
    margin: 0 0 5rem 0;
  }

  .innovation-principles-grid {
    gap: 2rem;
  }

  .innovation-principle-card {
    min-height: 500px;
  }

  .innovation-principle-content {
    padding: 1.75rem;
  }

  .innovation-principle-title {
    font-size: 1.25rem;
  }

  .innovation-principle-description {
    font-size: 1rem;
  }

  .sharp-decision-section {
    padding: 6rem 2rem;
  }

  .sharp-decision-quote {
    font-size: 2.5rem;
  }

  .rd-difference-section {
    padding: 6rem 2rem;
  }

  .rd-difference-title {
    font-size: 2.5rem;
    margin: 0 0 5rem 0;
  }

  .rd-difference-layout {
    gap: 1rem;
  }

  .rd-difference-image-wrapper {
    height: 100%;
  }

  .rd-difference-cards {
    gap: 1rem;
  }

  .rd-difference-card {
    padding: 2rem;
  }

  .rd-difference-card-title {
    font-size: 1.5rem;
  }

  .rd-difference-card-description {
    font-size: 1.1rem;
  }

  .innovation-heading {
    font-size: 1.875rem;
  }

  .innovation-paragraph {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .innovation-hero {
    min-height: 400px;
    padding: 3rem 1rem;
  }

  .innovation-hero-quote {
    font-size: 1.5rem;
  }

  .innovation-invest-section {
    padding: 3rem 1rem;
  }

  .innovation-invest-title {
    font-size: 1.5rem;
  }

  .innovation-invest-divider {
    margin: 0 0 2rem 0;
  }

  .innovation-invest-columns {
    gap: 1.5rem;
  }

  .innovation-principles-section {
    padding: 2rem 1rem;
  }

  .innovation-principles-title {
    font-size: 1.5rem;
    margin: 0 0 2rem 0;
  }

  .innovation-principles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .innovation-principle-card {
    min-height: 280px;
  }

  .innovation-principle-content {
    padding: 1.5rem;
  }

  .innovation-principle-title {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
  }

  .innovation-principle-description {
    font-size: 0.95rem;
  }

  .sharp-decision-section {
    padding: 3rem 1rem;
  }

  .sharp-decision-quote {
    font-size: 1.25rem;
  }

  .rd-difference-section {
    padding: 3rem 1rem;
  }

  .rd-difference-title {
    font-size: 1.5rem;
    margin: 0 0 2rem 0;
  }

  .rd-difference-layout {
    gap: 2rem;
  }

  .rd-difference-image-wrapper {
    height: 300px;
  }

  .rd-difference-cards {
    gap: 1rem;
  }

  .rd-difference-card {
    padding: 2rem;
  }

  .rd-difference-card-title {
    font-size: 1.125rem;
  }

  .rd-difference-card-description {
    font-size: 0.95rem;
  }

  .innovation-content-inner {
    padding: 3rem 1rem;
  }
}
/* Common Section Styles */
.vawt-section-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 3rem 0;
  text-align: center;
}

/* Why Vertical Axis Windmill Section */
.vawt-features-section {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.vawt-features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Why Vertical Axis Windmill Section - Grid Layout (3x2) */
.vawt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.vawt-feature-card {
  background: #F5F5F5;
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  transition: all 0.3s ease;
  height: 100%;
}

.vawt-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 150, 66, 0.15);
}

.vawt-feature-icon {
  width: 64px;
  height: 64px;
  background: #0A9642;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.vawt-feature-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.vawt-feature-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 1rem 0;
  text-align: left;
}

.vawt-feature-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #474444;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

/* Innovation Section */
.vawt-innovation-section {
  position: relative;
  padding: 7rem 1.5rem;
  background: #ffffff;
  min-height: auto;
  display: flex;
  align-items: center;
}

.vawt-innovation-tabs-absolute {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  z-index: 10;
  background: none;
}

.vawt-innovation-tab-absolute {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vawt-innovation-tab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.vawt-innovation-tab-word {
  display: inline-block;
}

.vawt-innovation-tab-absolute.active .vawt-innovation-tab-word:first-child {
  background: linear-gradient(90deg, #0A9642 0%, #0A9642 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.vawt-innovation-tab-absolute.active .vawt-innovation-tab-word:last-child {
  background: linear-gradient(90deg, #0A9642 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.vawt-innovation-tab-absolute:not(.active) .vawt-innovation-tab-text {
  color: #B0B0B0;
}

.vawt-innovation-tab-progress {
  width: 75%;
  height: 4px;
  background: linear-gradient(90deg, #0A9642 0%, #0066FF 100%);
  margin-top: 0.5rem;
  border-radius: 2px;
  animation: progressFill 0.3s ease;
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.vawt-innovation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.vawt-innovation-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
  transform: scale(1.1);
}

.vawt-innovation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.vawt-innovation-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.vawt-innovation-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 0 3rem 0;
  position: relative;
  z-index: 10;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.vawt-innovation-tabs {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.vawt-innovation-tab {
  background: none;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
}

.vawt-innovation-tab:hover {
  background: rgba(10, 150, 66, 0.05);
}

.vawt-innovation-tab-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Golos Text', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.vawt-innovation-tab-word {
  display: inline-block;
}

.vawt-innovation-tab.active .vawt-innovation-tab-text {
  color: transparent;
  background: linear-gradient(90deg, #0A9642 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vawt-innovation-tab:not(.active) .vawt-innovation-tab-text {
  color: #666666;
}

.vawt-innovation-tab-progress {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #0A9642 0%, #0066FF 100%);
  border-radius: 3px 3px 0 0;
  animation: progressFill 0.3s ease;
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

.vawt-innovation-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  text-align: center;
}

.vawt-innovation-subtitle {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  color: #4a4a4a;
  margin: 0 0 3rem 0;
  text-align: center;
  line-height: 1.6;
}

.vawt-innovation-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
}

.vawt-innovation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vawt-innovation-card {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 2.5rem;
  border: none;
  transition: all 0.3s ease;
}

.vawt-innovation-card:hover {
  background: #EEEEEE;
  transform: translateY(-4px);
}

.vawt-innovation-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.vawt-innovation-card-icon {
  flex-shrink: 0;
  margin: 0;
}

.vawt-innovation-icon-circle {
  width: 64px;
  height: 64px;
  background: #0A9642;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vawt-innovation-icon-circle svg {
  width: 24px;
  height: 24px;
}

.vawt-innovation-card-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.vawt-innovation-card-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;  
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}


/* Manufacturing & Quality Section */
.vawt-manufacturing-section {
  background: #ffffff;
  padding: 0;
  position: relative;
}

.vawt-manufacturing-tabs-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.vawt-manufacturing-tabs {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.vawt-manufacturing-tab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vawt-manufacturing-tab-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.vawt-manufacturing-tab-word {
  display: inline-block;
}

.vawt-manufacturing-tab.active .vawt-manufacturing-tab-word:first-child {
  background: linear-gradient(90deg, #0A9642 0%, #0A9642 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.vawt-manufacturing-tab.active .vawt-manufacturing-tab-word:last-child {
  background: linear-gradient(90deg, #0A9642 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.vawt-manufacturing-tab:not(.active) .vawt-manufacturing-tab-text {
  color: #B0B0B0;
}

.vawt-manufacturing-tab-progress {
  width: 75%;
  height: 4px;
  background: linear-gradient(90deg, #0A9642 0%, #0066FF 100%);
  margin-top: 0.5rem;
  border-radius: 2px;
  animation: progressFill 0.3s ease;
}

.vawt-manufacturing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.vawt-manufacturing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vawt-manufacturing-header .vawt-section-title {
  margin-bottom: 1rem;
}

.vawt-manufacturing-intro {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.0625rem;
  color: #474444;
  line-height: 1.8;
  margin: 0 auto;
  text-align: center;
  max-width: 900px;
}

.vawt-manufacturing-content {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.vawt-manufacturing-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  align-self: stretch;
  min-height: 500px;
}

.vawt-manufacturing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vawt-manufacturing-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vawt-manufacturing-download {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #0092E9;
  text-decoration: none;
  align-self: flex-end;
  transition: color 0.3s ease;
}

.vawt-manufacturing-download:hover {
  color: #0066FF;
  text-decoration: underline;
}

.vawt-manufacturing-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vawt-manufacturing-accordion-item {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 1.5rem;
}

.vawt-manufacturing-accordion-item:last-child {
  border-bottom: none;
}

.vawt-manufacturing-accordion-item:hover {
  background: #f9f9f9;
}

.vawt-manufacturing-accordion-item.expanded {
  background: #fafafa;
}

.vawt-manufacturing-accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.vawt-manufacturing-accordion-number {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #373737;
  min-width: 50px;
}

.vawt-manufacturing-accordion-title {
  font-family: 'Golos Text', sans-serif;
  font-size:1.25rem;
  font-weight: 500;
  color: #373737;
  margin: 0;
  flex: 1;
}

.vawt-manufacturing-accordion-toggle {
  font-family: 'Golos Text', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #373737;
  min-width: 36px;
  text-align: center;
}

.vawt-manufacturing-accordion-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.2rem;
  color: #373737;
  line-height: 1.5 ;
  margin: 0 0 1.5rem 0;
  /* padding-left: 66px; */
  /* padding-right: 40px; */
  animation: slideDown 0.3s ease;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
    padding-top: 0;
    padding-bottom: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* Certifications & Warranty Section */
.vawt-certifications-section {
  background: linear-gradient(68.06deg, rgba(203, 220, 0, 0.2) -23.15%, rgba(0, 146, 233, 0.2) 90.09%);
  padding: 4rem 1.5rem;
}

.vawt-certifications-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vawt-certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.vawt-certification-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vawt-certification-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(68.06deg, #CBDC00 -23.15%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.vawt-certification-subtitle {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #474444;
  margin: 0;
  line-height: 1.5;
}

.vawt-quality-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 0.5rem 0;
}

.vawt-quality-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #474444;
  line-height: 1.6;
  margin: 0;
}

/* Use Cases Slider Section */
.vawt-usecases-slider-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 5rem 0 1rem;
  overflow: hidden;
}

.vawt-usecases-slider-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.vawt-usecases-slider-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vawt-usecase-slider-card {
  background: #E5E5E5;
  border-radius: 12px;
  padding: 2.5rem;
}

.vawt-usecase-slider-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.vawt-usecase-slider-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #474444;
  line-height: 1.6;
  margin: 0;
}

/* Use Cases - 4 options, same layout as Solar (grid, no slider) */
.vawt-usecases-section {
  background: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}

.vawt-usecases-section .vawt-usecases-inner {
  max-width: none;
  width: 100%;
  padding: 0 1.5rem;
}

/* Use case grid - 4 cards, no slider */
.vawt-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
  width: 100%;
  max-width: none;
}

@media (min-width: 900px) {
  .vawt-usecases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Use case cards - scoped to grid so CSS logic stays in one place */
.vawt-usecases-grid .vawt-usecase-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.vawt-usecases-grid .vawt-usecase-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.vawt-usecases-grid .vawt-usecase-image-wrapper {
  position: absolute;
  inset: 0;
}

.vawt-usecases-grid .vawt-usecase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vawt-usecases-grid .vawt-usecase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 1;
}

/* Heading always visible at same position; description appears on hover */
.vawt-usecases-grid .vawt-usecase-text {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.vawt-usecases-grid .vawt-usecase-text * {
  pointer-events: auto;
}

/* Heading first; when description appears on hover, heading moves up to make room */
.vawt-usecases-grid .vawt-usecase-card-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  margin: 0;
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: bottom 0.3s ease;
}

.vawt-usecases-grid .vawt-usecase-card.expanded .vawt-usecase-card-title {
  bottom: 6rem;
}

.vawt-usecases-grid .vawt-usecase-card-description {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-height: 5.5rem;
  overflow: hidden;
  margin: 0;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vawt-usecases-grid .vawt-usecase-card-description.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Use Cases - Large Scale */
.vawt-usecases-large-section {
  background: #ffffff;
  position: relative;
}

.vawt-usecases-large-title-wrapper {
  background: #ffffff;
  padding: 3rem 1.5rem 0;
  text-align: center;
}

.vawt-usecases-large-content-wrapper {
  position: relative;
  background: #e5e5e5;
  max-height: 500px;
  overflow: hidden;
}

.vawt-usecases-large-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.vawt-usecases-large-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vawt-usecases-large-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(229, 229, 229, 0.85);
  z-index: 1;
}

.vawt-usecases-large-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

.vawt-usecases-large-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 1.5rem 0;
}

.vawt-usecases-large-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.0625rem;
  color: #474444;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.vawt-usecases-large-cta {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(-133deg, #CBDC00 0%, #0092E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;

}

.vawt-usecases-large-cta:hover {
  color: #088530;
  text-decoration: underline;
}

/* Product Card Section - full-width bg image, info panel on right */
.vawt-product-card-section {
  padding: 4rem 1.5rem;
  min-height: 520px;
  background-color: #e8e8e8;
  background-image: url(/assets/images/vaw_series.1a7ffbd7744be782e4e2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.vawt-product-card-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.vawt-product-card {
  background: rgba(248, 249, 250, 0.97);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.vawt-product-header {
  padding-bottom: 1.25rem;
}

.vawt-product-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.vawt-product-title-green {
  color: #6bb300;
}

.vawt-product-title-blue {
  color: #0092E9;
}

.vawt-product-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9375rem;
  color: #2b2b2b;
  line-height: 1.6;
  margin: 1rem 0 0 0;
}

.vawt-product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vawt-product-wattage,
.vawt-product-model {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.vawt-product-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  /* margin-bottom: 2rem; */
}

.vawt-product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vawt-product-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vawt-product-feature-icon svg {
  width: 100%;
  height: 100%;
}

.vawt-icon-shield,
.vawt-icon-leaf {
  width: 28px;
  height: 28px;
}

.vawt-product-feature-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #474444;
  line-height: 1.5;
  flex: 1;
}

.vawt-product-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.vawt-product-more-details {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vawt-product-more-details:hover {
  color: #0092E9;
}

.vawt-product-download-btn {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0092E9;
  text-decoration: underline;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.vawt-product-download-btn:hover {
  color: #0077b6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vawt-innovation-content {
    padding: 0 1.5rem;
  }

  .vawt-innovation-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .vawt-manufacturing-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vawt-manufacturing-image {
    min-height: 300px;
  }

  .vawt-certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .vawt-usecases-slider-section {
    padding: 4rem 0;
  }
}

@media (max-width: 1024px) {
  .vawt-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vawt-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .vawt-section-title {
    font-size: 2rem;
  }

  .vawt-features-title {
    font-size: 2rem;
  }

  .vawt-features-grid {
    grid-template-columns: 1fr;
  }

  .vawt-innovation-tabs-wrapper {
    margin: 0 0 2rem 0;
    padding-bottom: 0.75rem;
  }

  .vawt-innovation-tabs {
    gap: 1rem;
  }

  .vawt-innovation-tab {
    padding: 0.75rem 1rem;
  }

  .vawt-innovation-tab-text {
    font-size: 0.95rem;
  }

  .vawt-innovation-title {
    font-size: 2rem;
  }

  .vawt-innovation-subtitle {
    font-size: 1rem;
  }

  .vawt-innovation-content {
    padding: 0 1.5rem;
  }

  .vawt-innovation-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vawt-usecases-grid {
    grid-template-columns: 1fr;
  }

  .vawt-manufacturing-tabs-wrapper {
    padding: 1.5rem 1rem;
  }

  .vawt-manufacturing-tabs {
    gap: 2rem;
  }

  .vawt-manufacturing-tab-text {
    font-size: 1rem;
  }

  .vawt-manufacturing-content {
    grid-template-columns: 1fr;
  }

  .vawt-manufacturing-accordion-description {
    padding-left: 0;
    padding-right: 0;
  }

  .vawt-innovation-tabs-wrapper {
    margin: 1.5rem 0 2rem 0;
  }

  .vawt-innovation-tabs {
    gap: 2rem;
  }

  .vawt-innovation-tab-text {
    font-size: 1rem;
  }

  .vawt-certifications-section {
    padding: 3rem 1.5rem;
  }

  .vawt-certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .vawt-certification-title {
    font-size: 2rem;
  }

  .vawt-usecases-slider-section {
    padding: 3rem 0;
  }

  .vawt-usecases-slider-inner {
    padding: 0 1rem;
  }

  .vawt-usecases-slider-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vawt-usecase-slider-card {
    padding: 2rem 1.5rem;
  }

  .vawt-usecase-slider-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .vawt-features-section,
  .vawt-innovation-section,
  .vawt-manufacturing-section,
  .vawt-usecases-section,
  .vawt-usecases-large-title-wrapper {
    padding: 2rem 1rem 0;
  }

  .vawt-usecases-section .vawt-usecases-inner {
    padding: 0 1rem;
  }

  .vawt-usecases-large-content-wrapper {
    min-height: 400px;
  }

  .vawt-usecases-large-content {
    padding: 3rem 1rem;
  }

  .vawt-usecases-large-title {
    font-size: 1.5rem;
  }

  .vawt-usecases-large-description {
    font-size: 1rem;
  }

  .vawt-product-card-section {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .vawt-product-card-container {
    justify-content: center;
  }

  .vawt-product-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .vawt-product-title {
    font-size: 1.5rem;
  }

  .vawt-product-description {
    font-size: 0.875rem;
  }

  .vawt-product-wattage,
  .vawt-product-model {
    font-size: 1rem;
  }

  .vawt-product-feature-text {
    font-size: 0.95rem;
  }

  .vawt-product-actions {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .vawt-product-download-btn {
    text-align: center;
  }

  .vawt-feature-card {
    padding: 2rem 1.5rem;
  }
}

/* Common Section Styles */
.solar-section {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.solar-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solar-section-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #474444;
  margin: 0 0 2rem 0;
  text-align: left;
}

.solar-why-title {
  text-align: center;
}

/* Why NECON's Solar */
.solar-why-content {
  max-width: 900px;
  margin: 0 auto;
}

.solar-section-title.solar-why-title {
  text-align: center;
}

.solar-why-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.0625rem;
  color: #474444;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

/* Solar Modules Section */
.solar-modules-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.solar-modules-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.solar-modules-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solar-modules-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(180, 180, 180, 0.35);
}

.solar-modules-section .solar-section-inner {
  position: relative;
  z-index: 1;
}

.solar-modules-title {
  text-align: center;
  font-size: 28px;
}

.solar-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8125rem;
  margin-top: 3rem;
}

.solar-module-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.75rem 3.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #ffffff;
  position: relative;
}

.solar-module-header {
  margin-bottom: 1.875rem;
}

.solar-module-power {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.9375rem 0;
  background: linear-gradient(19.47deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solar-module-type {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #474444;
  margin: 0 0 0.3125rem 0;
}

.solar-module-cells {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #474444;
  margin: 0;
}

.solar-module-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  color: #474444;
  line-height: 1.67;
  margin: 0 0 1.875rem 0;
}

.solar-module-specs {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
  margin-bottom: 2.5rem;
}

.solar-module-warranty-item {
  display: flex;
  align-items: center;
  gap: 1.3125rem;
}

.solar-module-warranty-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #474444;
  line-height: 1.5;
  margin: 0;
}

.solar-module-feature-item {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}

.solar-module-feature-icon {
  width: 56px;
  height: 56px;
  background: #007A2D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}

.solar-module-feature-icon svg {
  width: 40px;
  height: 40px;
}

.solar-module-feature-icon svg path,
.solar-module-feature-icon svg circle {
  fill: #ffffff;
  stroke: #ffffff;
}

.solar-module-feature-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #474444;
  line-height: 1.5;
  margin: 0;
}

.solar-module-actions {
  display: flex;
  gap: 1.875rem;
  align-items: center;
}

.solar-module-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #474444;
  text-decoration: underline;
  text-decoration-style: solid;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.solar-module-link:hover {
  opacity: 1;
  background: linear-gradient(32.42deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-style: solid;
}


/* Key Performance Pillars */
.solar-pillars-section {
  background: #f9f9f9;
}

.solar-pillars-title {
  text-align: center;
}

.solar-pillars-intro {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.0625rem;
  color: #474444;
  line-height: 1.7;
  margin: 0 auto 3rem auto;
  max-width: 1000px;
  text-align: justify;
}

.solar-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 3rem;
}

.solar-pillar-card {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.solar-pillar-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  max-width: 578px;
  gap: 146px;
}

.solar-pillar-icon-wrapper {
  width: 50px;
  height: 50px;
  background: #007A2D;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.solar-pillar-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.solar-pillar-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  text-align: left;
}

.solar-pillar-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.solar-pillar-title-gradient-1 {
  background: linear-gradient(20.74deg, #CBDC00 7.09%, #0092E9 43.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solar-pillar-title-gradient-2 {
  background: linear-gradient(9.42deg, #CBDC00 16.03%, #179ACE 45.12%, #0092E9 83.64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solar-pillar-title-gradient-3 {
  background: linear-gradient(10.23deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solar-pillar-title-gradient-4 {
  background: linear-gradient(9.84deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solar-pillar-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #474444;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

/* Use Cases Section - Slider */
.solar-usecases-section {
  background: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}

.solar-usecases-inner {
  max-width: none;
  width: 100%;
  padding: 0 1.5rem;
}

.solar-usecases-title {
  text-align: center;
}

/* Use Cases - 4 options only, full-width grid */
.solar-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
  width: 100%;
  max-width: none;
}

.solar-usecases-grid .solar-usecase-slide {
  flex: none;
  width: 100%;
  height: 320px;
}

.solar-usecases-grid .solar-usecase-slide.expanded {
  flex: none;
  width: 100%;
}

.solar-usecases-grid .solar-usecases-slider.has-expanded .solar-usecase-slide:not(.expanded) {
  flex: none;
  width: 100%;
}

@media (min-width: 900px) {
  .solar-usecases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.solar-usecases-grid .solar-usecase-image-wrapper,
.solar-usecases-grid .solar-usecase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Same design as VAWT: heading always visible, description on hover, heading moves up */
.solar-usecases-grid .solar-usecase-text {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: none;
  pointer-events: none;
  z-index: 10;
}

.solar-usecases-grid .solar-usecase-text * {
  pointer-events: auto;
}

.solar-usecases-grid .solar-usecase-slide-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  margin: 0;
  transition: bottom 0.3s ease;
}

.solar-usecases-grid .solar-usecase-slide.expanded .solar-usecase-slide-title {
  bottom: 6rem;
}

.solar-usecases-grid .solar-usecase-slide-description {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  margin: 0;
  max-height: 5.5rem;
  overflow: hidden;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
}

.solar-usecases-grid .solar-usecase-slide-description.visible {
  opacity: 1;
  transform: translateY(0);
}

.solar-usecases-slider-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  padding: 0;
}

.solar-usecases-slider {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
  will-change: transform;
  animation: scroll-infinite 40s linear infinite;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  padding: 0 1.5rem;
}

.solar-usecases-slider.paused {
  animation-play-state: paused;
}

.solar-usecases-slider.has-expanded {
  animation-play-state: paused;
}

.solar-usecases-slider::-webkit-scrollbar {
  display: none;
}

.solar-usecases-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.solar-usecase-slide {
  flex: 0 0 280px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: flex-basis 500ms ease-in-out, width 500ms ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solar-usecases-slider.has-expanded .solar-usecase-slide:not(.expanded) {
  flex-basis: 200px;
  width: 200px;
}

.solar-usecase-slide.expanded {
  flex-basis: 480px;
  width: 480px;
}

.solar-usecase-image-wrapper {
  position: absolute;
  inset: 0;
}

.solar-usecase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.solar-usecase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}

.solar-usecase-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  z-index: 10;
}

.solar-usecase-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.solar-usecase-slide-title {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.solar-usecase-slide-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@keyframes scroll-infinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* Manufacturing & Quality Assurance */
.solar-quality-section {
  background: #f9f9f9;
}

.solar-quality-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.solar-quality-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #474444;
  text-align: center;
  margin: 0 0 50px 0;
  line-height: 1.5;
}

.solar-quality-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 0;
  position: relative;
}

.solar-quality-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: visible;
  position: relative;
}

.solar-quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 705px;
  max-height: 636px;
  border-radius: 12px;
}

.solar-quality-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.solar-quality-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solar-quality-feature {
  display: flex;
  align-items: center;
  gap: 40px;
}

.solar-quality-check-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 30px;
  flex-shrink: 0;
}

.solar-quality-check-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.solar-quality-feature-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #474444;
  line-height: 150%;
  margin: 0;
  flex: 1;
}

.solar-quality-feature-title {
  font-weight: 700;
}

.solar-quality-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
  flex-wrap: nowrap;
  position: absolute;
  bottom: 15%;
  left: 35%;
}

.solar-quality-box {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 0;
  width: 100%;
  height: 238px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solar-quality-box-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.03;
}

.solar-quality-box-title-gradient-1 {
  background: linear-gradient(34.57deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solar-quality-box-title-gradient-2 {
  background: linear-gradient(41.70deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
 
}

.solar-quality-box-title-gradient-3 {
  background: linear-gradient(30.71deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}

.solar-quality-box-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #474444;
  line-height: 1.3;
  margin: 0;
}

.solar-quality-box > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 209px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .solar-modules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.8125rem;
  }
  
  .solar-module-card {
    padding: 2.75rem 3.125rem;
  }

  .solar-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .solar-pillar-card {
    padding: 46px 52px;
  }

  .solar-pillar-content {
    gap: 100px;
  }

  .solar-quality-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .solar-quality-image {
    width: 100%;
    max-width: 736px;
    height: auto;
    aspect-ratio: 736 / 1051;
  }

  .solar-quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .solar-quality-content {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }

  .solar-quality-boxes {
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
    flex-wrap: nowrap;
  }

  .solar-quality-box {
    width: 258px;
    height: 238px;
    flex: 0 0 258px;
  }

  .solar-usecase-slide {
    flex: 0 0 280px;
    width: 280px;
  }

  .solar-usecases-slider.has-expanded .solar-usecase-slide:not(.expanded) {
    flex-basis: 200px;
    width: 200px;
  }

  .solar-usecase-slide.expanded {
    flex-basis: 480px;
    width: 480px;
  }
}

@media (min-width: 1024px) {
  .solar-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .solar-pillar-content {
    gap: 80px;
  }

  .solar-usecase-slide {
    flex: 0 0 320px;
    width: 320px;
  }

  .solar-usecases-slider.has-expanded .solar-usecase-slide:not(.expanded) {
    flex-basis: 240px;
    width: 240px;
  }

  .solar-usecase-slide.expanded {
    flex-basis: 600px;
    width: 600px;
  }
}

@media (max-width: 640px) {
  .solar-section {
    padding: 3rem 1rem;
  }

  .solar-section-title {
    font-size: 2rem;
  }

  .solar-modules-title {
    font-size: 2rem;
  }

  .solar-pillar-card {
    padding: 30px 24px;
    min-height: auto;
  }

  .solar-pillar-content {
    gap: 40px;
  }

  .solar-pillar-icon-wrapper {
    width: 80px;
    height: 80px;
    padding: 16px;
  }

  .solar-pillar-icon-img {
    width: 48px;
    height: 48px;
  }

  .solar-pillar-title {
    font-size: 22px;
  }

  .solar-pillar-description {
    font-size: 0.9375rem;
  }

  .solar-module-card {
    padding: 2rem 1.5rem;
  }

  .solar-module-power {
    font-size: 1.75rem;
  }

  .solar-module-type {
    font-size: 1.25rem;
  }

  .solar-module-cells {
    font-size: 1.25rem;
  }

  .solar-module-description {
    font-size: 1rem;
  }

  .solar-module-warranty-item,
  .solar-module-feature-item {
    flex-wrap: wrap;
  }

  .solar-module-warranty-text,
  .solar-module-feature-text {
    font-size: 1rem;
  }

  .solar-module-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .solar-usecase-slide {
    flex: 0 0 280px;
    width: 280px;
  }

  .solar-usecase-slide.expanded {
    flex-basis: 400px;
    width: 400px;
  }

  .solar-usecases-slider.has-expanded .solar-usecase-slide:not(.expanded) {
    flex-basis: 180px;
    width: 180px;
  }
}

/* Modal Styles */
.solar-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
  overflow-y: auto;
}

.solar-modal-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 0;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.solar-modal-header-actions {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.solar-modal-body {
  padding: 3rem;
  overflow-y: auto;
  flex: 1;
}

.solar-modal-footer {
  padding: 1.5rem 3rem;
  border-top: 1px solid #e5e5e5;
  background: #ffffff;
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solar-modal-download {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-style: solid;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: linear-gradient(32.42deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.solar-modal-download:hover {
  opacity: 0.7;
}

.solar-modal-close {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: #474444;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.solar-modal-close:hover {
  color: #0092E9;
}

.solar-modal-header {
  margin-bottom: 1.875rem;
}

.solar-modal-power {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.9375rem 0;
  background: linear-gradient(19.47deg, #CBDC00 23.154%, #0092E9 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solar-modal-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #474444;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solar-modal-cells {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #474444;
  margin: 0;
}

.solar-modal-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.0625rem;
  color: #474444;
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.solar-modal-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.solar-modal-warranty-item,
.solar-modal-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.solar-modal-warranty-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(19.47deg, #CBDC00 23.154%, #0092E9 90.09%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.solar-modal-warranty-badge-inner {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.solar-modal-warranty-number {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #474444;
  line-height: 1;
}

.solar-modal-warranty-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  color: #474444;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.solar-modal-warranty-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.875rem;
  color: #474444;
  line-height: 1.4;
  margin: 0;
}

.solar-modal-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(19.47deg, #CBDC00 23.154%, #0092E9 90.09%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.solar-modal-feature-icon svg {
  width: 100%;
  height: 100%;
}

.solar-modal-feature-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.875rem;
  color: #474444;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.solar-modal-additional {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.solar-modal-additional-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 1.5rem 0;
}

.solar-modal-additional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solar-modal-additional-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  color: #474444;
  line-height: 1.6;
}

.solar-modal-check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .solar-modal-content {
    margin: 1rem;
  }

  .solar-modal-body {
    padding: 2rem 1.5rem;
  }

  .solar-modal-footer {
    padding: 1.25rem 1.5rem;
  }

  .solar-modal-specs {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .solar-modal-power {
    font-size: 1.75rem;
  }

  .solar-modal-additional-title {
    font-size: 1.25rem;
  }
}

/* Common Section Styles */
.hybrid-section-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 36px; /* H2 size */
  font-weight: 700;
  color: #474444;
  margin: 0 0 2rem 0;
  text-align: center;
}

/* Intro Section */
.hybrid-intro-section {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.hybrid-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hybrid-intro-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #474444;
  text-align: center;
  margin: 0 0 42px 0;
  line-height: 1.5;
}

.hybrid-intro-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #474444;
  line-height: 1.5;
  margin: 0 auto 40px auto;
  max-width: 1373px;
  text-align: center;
}

.hybrid-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.hybrid-intro-image {
  width: 100%;
  max-width: 1194px;
  height: auto;
  border-radius: 0;
  overflow: visible;
  position: relative;
}

.hybrid-intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hybrid-intro-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 901px;
  margin-left: auto;
}

.hybrid-accordion-divider {
  width: 100%;
  height: 1px;
  background: #B3B3B3;
  margin: 27px 0;
}

.hybrid-accordion-item {
  background: transparent;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hybrid-accordion-item:hover {
  background: transparent;
}

.hybrid-accordion-item.expanded {
  background: transparent;
  box-shadow: none;
}

.hybrid-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 0;
}

.hybrid-accordion-header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hybrid-accordion-number {
  font-family: 'Golos Text', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #474444;
  min-width: auto;
  line-height: 1.5;
}

.hybrid-accordion-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #474444;
  margin: 0;
  line-height: 1.5;
}

.hybrid-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.hybrid-accordion-toggle svg {
  width: 100%;
  height: 100%;
}

.hybrid-accordion-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #474444;
  line-height: 1.5;
  margin: 27px 0 0 0;
  padding: 0;
  border: none;
  text-align: justify;
}

/* Stats Section */
.hybrid-stats-section {
  background: linear-gradient(30.19deg, rgba(203, 220, 0, 0.25) 23.154%, rgba(0, 146, 233, 0.25) 90.09%);
  padding: 5rem 1.5rem;
}

.hybrid-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hybrid-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hybrid-stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hybrid-stat-card-inner {
  text-align: center;
}

.hybrid-stat-value {
  font-family: 'Golos Text', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1rem 0;
  display: inline-block;
  white-space: nowrap;
}

.hybrid-stat-value-gradient {
  background: linear-gradient(90deg, #0A9642 0%, #0092E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hybrid-stat-label {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #474444;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* Comparison Section */
.hybrid-comparison-section {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.hybrid-comparison-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hybrid-comparison-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #474444;
  text-align: center;
  margin: 0 0 50px 0;
  line-height: 1.5;
}

.hybrid-comparison-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hybrid-comparison-card {
  position: relative;
  width: 100%;
  max-width: 1430px;
  height: 582px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto;
  background: #f5f5f5;
}

.hybrid-comparison-card-bg {
  display: none;
}

.hybrid-comparison-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 565px 1fr;
  gap: 50px;
  height: 100%;
  padding: 26px 73px;
  align-items: center;
}

.hybrid-comparison-card-content-reverse {
  grid-template-columns: 565px 1fr;
  padding: 34px 35px;
}

.hybrid-comparison-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 530px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.hybrid-comparison-image-wrapper img,
.hybrid-comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.hybrid-comparison-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 565px;
  padding-right: 0;
}

.hybrid-comparison-card-content-reverse .hybrid-comparison-content {
  position: relative;
  left: auto;
  top: auto;
  margin: 0;
  width: 565px;
  padding-left: 0;
}

.hybrid-comparison-column-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  line-height: 1.5;
  text-align: justify;
  letter-spacing: -0.396px;
  position: relative;
  width: fit-content;
  height: auto;
}

.hybrid-comparison-title-gradient-1 {
  background: linear-gradient(36.98673685337036deg, rgba(203, 220, 0, 1) 23.154%, rgba(0, 146, 233, 1) 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hybrid-comparison-title-gradient-2 {
  background: linear-gradient(48.88908039194553deg, rgba(203, 220, 0, 1) 23.154%, rgba(0, 146, 233, 1) 90.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hybrid-comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hybrid-comparison-point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
}

.hybrid-comparison-check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hybrid-comparison-check-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hybrid-comparison-point-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #474444;
  line-height: 1.5;
  text-align: justify;  
  letter-spacing: -0.264px;
  margin: 0;
}

/* Use Cases Section */
.hybrid-usecases-section {
  background: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}

.hybrid-usecases-inner {
  max-width: none;
  width: 100%;
  padding: 0 1.5rem;
}

/* Use Cases - 4 options, same layout as Solar (grid, no slider) */
.hybrid-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
  width: 100%;
  max-width: none;
}

@media (min-width: 900px) {
  .hybrid-usecases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hybrid-usecases-grid .hybrid-usecase-slide {
  flex: none;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.hybrid-usecases-grid .hybrid-usecase-slide:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Same design as VAWT: heading always visible, description on hover, heading moves up */
.hybrid-usecases-grid .hybrid-usecase-text {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: none;
  pointer-events: none;
  z-index: 10;
}

.hybrid-usecases-grid .hybrid-usecase-text * {
  pointer-events: auto;
}

.hybrid-usecases-grid .hybrid-usecase-slide-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  margin: 0;
  transition: bottom 0.3s ease;
}

.hybrid-usecases-grid .hybrid-usecase-slide.expanded .hybrid-usecase-slide-title {
  bottom: 8rem;
}

.hybrid-usecases-grid .hybrid-usecase-slide-description {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  margin: 0;
  max-height: 5.5rem;
  overflow: hidden;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
}

.hybrid-usecases-grid .hybrid-usecase-slide-description.visible {
  opacity: 1;
  transform: translateY(0);
}

.hybrid-usecase-image-wrapper {
  position: absolute;
  inset: 0;
}

.hybrid-usecase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hybrid-usecase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}

.hybrid-usecase-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  z-index: 10;
}

.hybrid-usecase-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.hybrid-usecase-slide-title {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hybrid-usecase-slide-description {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@keyframes scroll-infinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* Why NECON Section */
.hybrid-why-necon-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf2 100%);
  padding: 5rem 1.5rem;
}

.hybrid-why-necon-inner {
  max-width: 1431px;
  margin: 0 auto;
}

.hybrid-why-necon-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #474444;
  text-align: center;
  margin: 0 0 50px 0;
  line-height: 1.5;
  letter-spacing: -0.968px;
  white-space: pre-wrap;
}

.hybrid-why-necon-grid {
  display: grid;
  grid-template-columns: 464px 464px 464px;
  grid-template-rows: 360px 440px;
  gap: 20px;
  margin-top: 0;
  position: relative;
  width: 1431px;
  height: 820px;
  margin: 0 auto;
}

.hybrid-why-necon-card {
  background: #f5f5f5;
  border-radius: 15px;
  position: absolute;
  overflow: visible;
  padding: 0;
  box-sizing: border-box;
}

.hybrid-why-necon-card-1 {
  left: 0;
  top: 0;
  width: 464px;
  height: 150px;
}

.hybrid-why-necon-card-2 {
  left: 0;
  top: 380px;
  width: 464px;
  height: 250px;
}

.hybrid-why-necon-card-3 {
  left: 484px;
  top: 0;
  width: 464px;
  height: 250px;
}

.hybrid-why-necon-card-4 {
  left: 484px;
  top: 460px;
  width: 947px;
  height: 200px;
}

.hybrid-why-necon-card-5 {
  left: 968px;
  top: 0;
  width: 464px;
  height: 440px;
}

.hybrid-why-necon-icon-circle {
  width: 75px;
  height: 75px;
  background: #0a9642;
  border-radius: 37.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17.5px;
  position: absolute;
}

.hybrid-why-necon-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hybrid-why-necon-icon-circle svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.hybrid-why-necon-icon-1 {
  left: 30px;
  top: 30px;
}

.hybrid-why-necon-icon-2 {
  left: 30px;
  top: 410px;
}

.hybrid-why-necon-icon-3 {
  left: 514px;
  top: 30px;
}

.hybrid-why-necon-icon-4 {
  left: 514px;
  top: 490px;
}

.hybrid-why-necon-icon-5 {
  left: 998px;
  top: 30px;
}

.hybrid-why-necon-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #474444;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  letter-spacing: -0.24px;
  white-space: pre-wrap;
  position: absolute;
  padding-right: 20px;
}

.hybrid-why-necon-text-1 {
  left: 30px;
  top: 130px;
  width: 390px;
}

.hybrid-why-necon-text-2 {
  left: 30px;
  top: 510px;
  width: 390px;
}

.hybrid-why-necon-text-3 {
  left: 514px;
  top: 130px;
  width: 390px;
}

.hybrid-why-necon-text-4 {
  left: 514px;
  top: 590px;
  width: 900px;
}

.hybrid-why-necon-text-5 {
  left: 998px;
  top: 130px;
  width: 390px;
}

/* Flagship Projects Section */
.hybrid-projects-section {
  background: linear-gradient(
    68.06deg,
    rgba(203, 220, 0, 0.25) -23.15%,
    rgba(0, 146, 233, 0.25) 90.09%
  );
  padding: 5rem 1.5rem;
  width: 100%;
}

.hybrid-projects-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.hybrid-projects-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #474444;
  margin: 0 0 3rem 0;
  text-align: left;
}

.hybrid-projects-slider-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 1.5rem;
  overflow: hidden;
  position: relative;
}

.hybrid-projects-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.hybrid-projects-slider::-webkit-scrollbar {
  display: none;
}

.hybrid-project-card {
  flex: 0 0 calc((100% - 2rem) / 2.5);
  min-width: 380px;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hybrid-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hybrid-project-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hybrid-project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hybrid-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    236.59042311084923deg,
    rgba(255, 255, 255, 0.73) 0%,
    rgba(0, 0, 0, 0.73) 138.8%
  );
  pointer-events: none;
  border-radius: 15px;
}

.hybrid-project-icon-container {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.hybrid-project-icon-circle {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hybrid-project-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hybrid-project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 10;
  color: #ffffff;
}

.hybrid-project-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.hybrid-project-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hybrid-project-feature {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.hybrid-project-feature:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0A9642;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hybrid-project-feature:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hybrid-intro-layout {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
  }

  .hybrid-intro-image {
    width: 100%;
    max-width: 1194px;
    height: auto;
  }

  .hybrid-intro-accordion {
    margin-left: 2rem;
  }

  .hybrid-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .hybrid-stat-value {
    font-size: 3.5rem;
  }

  .hybrid-stat-label {
    font-size: 1.25rem;
  }

  .hybrid-stat-value {
    font-size: 3.5rem;
  }

  .hybrid-stat-card-inner {
    padding: 1rem;
  }

  .hybrid-comparison-card {
    max-width: 100%;
    height: auto;
    min-height: 500px;
  }

  .hybrid-comparison-card-content {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
  }

  .hybrid-comparison-card-content-reverse {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .hybrid-comparison-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .hybrid-comparison-image-wrapper {
    width: 100%;
    height: 300px;
    max-height: 300px;
    margin: 0;
  }

  .hybrid-comparison-image-wrapper img,
  .hybrid-comparison-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-image-wrapper {
    width: 100%;
    height: 300px;
    max-height: 300px;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-image-wrapper img,
  .hybrid-comparison-card-content-reverse .hybrid-comparison-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .hybrid-why-necon-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
  }

  .hybrid-why-necon-card-1,
  .hybrid-why-necon-card-2,
  .hybrid-why-necon-card-3,
  .hybrid-why-necon-card-4,
  .hybrid-why-necon-card-5 {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  .hybrid-why-necon-icon-circle {
    position: relative;
    left: auto;
    top: auto;
    margin: 2rem 0 1.5rem 0;
  }

  .hybrid-why-necon-text {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 0 2rem 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hybrid-why-necon-grid {
    width: 1431px;
    height: 820px;
  }

  .hybrid-why-necon-card-1 {
    left: 0;
    top: 0;
    width: 464px;
    height: 360px;
  }

  .hybrid-why-necon-card-2 {
    left: 0;
    top: 380px;
    width: 464px;
    height: 400px;
  }

  .hybrid-why-necon-card-3 {
    left: 484px;
    top: 0;
    width: 464px;
    height: 440px;
  }

  .hybrid-why-necon-card-4 {
    left: 484px;
    top: 460px;
    width: 947px;
    height: 340px;
  }

  .hybrid-why-necon-card-5 {
    left: 968px;
    top: 0;
    width: 464px;
    height: 440px;
  }

  .hybrid-why-necon-icon-circle {
    position: absolute;
  }

  .hybrid-why-necon-icon-1 {
    left: 30px;
    top: 30px;
  }

  .hybrid-why-necon-icon-2 {
    left: 30px;
    top: 410px;
  }

  .hybrid-why-necon-icon-3 {
    left: 514px;
    top: 30px;
  }

  .hybrid-why-necon-icon-4 {
    left: 514px;
    top: 490px;
  }

  .hybrid-why-necon-icon-5 {
    left: 998px;
    top: 30px;
  }

  .hybrid-why-necon-text {
    position: absolute;
  }

  .hybrid-why-necon-text-1 {
    left: 0px;
    top: 200px;
    width: 390px;
  }

  .hybrid-why-necon-text-2 {
    left: 0px;
    top: 550px;
    width: 390px;
  }

  .hybrid-why-necon-text-3 {
    left: 486px;
    top: 200px;
    width: 390px;
  }

  .hybrid-why-necon-text-4 {
    left: 486px;
    top: 640px;
    width: 900px;
  }

  .hybrid-why-necon-text-5 {
    left: 970px;
    top: 200px;
    width: 390px;
  }

  .hybrid-components-grid {
    gap: 3rem;
  }

  .hybrid-stat-value {
    font-size: 2.5rem;
  }

  .hybrid-comparison-card {
    max-width: 1430px;
    height: 582px;
  }

  .hybrid-comparison-card-content {
    grid-template-columns: 565px 1fr;
    padding: 26px 25px;
    gap: 50px;
  }

  .hybrid-comparison-card-content-reverse {
    grid-template-columns: 565px 1fr;
    padding: 34px 35px;
    gap: 50px;
  }

  .hybrid-comparison-content {
    width: 565px;
    padding: 0;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-content {
    width: 565px;
    padding: 0;
  }

  .hybrid-comparison-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 530px;
  }

  .hybrid-comparison-image-wrapper img,
  .hybrid-comparison-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 530px;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-image-wrapper img,
  .hybrid-comparison-card-content-reverse .hybrid-comparison-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .hybrid-stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .hybrid-section-title {
    font-size: 28px; /* H2 responsive - tablet */
  }

  .hybrid-usecases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hybrid-intro-section,
  .hybrid-stats-section,
  .hybrid-comparison-section,
  .hybrid-why-necon-section,
  .hybrid-projects-section {
    padding: 3rem 1rem;
  }

  .hybrid-intro-title {
    font-size: 28px;
  }

  .hybrid-intro-text {
    font-size: 18px;
    margin-bottom: 2rem;
  }

  .hybrid-accordion-number {
    font-size: 20px;
  }

  .hybrid-accordion-title {
    font-size: 24px;
  }

  .hybrid-accordion-description {
    font-size: 18px;
  }

  .hybrid-accordion-header-left {
    gap: 20px;
  }

  .hybrid-intro-accordion {
    margin-left: 0;
    margin-top: 2rem;
  }

  .hybrid-usecases-section {
    padding: 3rem 0;
  }

  .hybrid-usecases-inner {
    padding: 0 1rem;
  }

  .hybrid-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hybrid-stat-value {
    font-size: 2rem;
  }

  .hybrid-stat-label {
    font-size: 0.9375rem;
  }

  .hybrid-stat-label {
    font-size: 0.9375rem;
  }

  .hybrid-comparison-card {
    height: auto;
    min-height: 400px;
  }

  .hybrid-comparison-card-content {
    padding: 2rem 1.5rem;
    position: relative;
  }

  .hybrid-comparison-card-content-reverse {
    padding: 2rem 1.5rem;
  }

  .hybrid-comparison-content {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    position: relative;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .hybrid-comparison-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    left: 0;
    top: 0;
    margin: 2rem 0;
    order: -1;
  }

  .hybrid-comparison-image-wrapper img,
  .hybrid-comparison-image {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    left: 0;
    top: 0;
    margin: 2rem 0;
    order: -1;
  }

  .hybrid-comparison-card-content-reverse .hybrid-comparison-image-wrapper img,
  .hybrid-comparison-card-content-reverse .hybrid-comparison-image {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }

  .hybrid-comparison-title {
    font-size: 28px;
  }

  .hybrid-comparison-column-title {
    font-size: 28px;
  }

  .hybrid-comparison-point-text {
    font-size: 18px;
  }

  .hybrid-why-necon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hybrid-why-necon-title {
    font-size: 28px;
  }

  .hybrid-why-necon-card-1,
  .hybrid-why-necon-card-2,
  .hybrid-why-necon-card-3,
  .hybrid-why-necon-card-4,
  .hybrid-why-necon-card-5 {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 250px;
  }

  .hybrid-why-necon-icon-circle {
    position: relative;
    left: auto;
    top: auto;
    width: 70px;
    height: 70px;
    margin: 1.5rem auto 1rem auto;
    padding: 15px;
  }

  .hybrid-why-necon-icon-circle svg {
    width: 30px;
    height: 30px;
  }

  .hybrid-why-necon-icon-img {
    width: 30px;
    height: 30px;
  }

  .hybrid-why-necon-text {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    font-size: 20px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    text-align: center;
  }

  .hybrid-projects-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .hybrid-project-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: 320px;
    height: 450px;
  }

  .hybrid-projects-slider {
    gap: 1.5rem;
  }

  .hybrid-project-icon-circle {
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .hybrid-project-content {
    padding: 1.5rem;
  }

  .hybrid-project-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .hybrid-project-feature {
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.App {
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
}

.home-page {
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

.home-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.home-content h1 {
  font-family: 'Golos Text', sans-serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.home-content p {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.2rem;
  color: #666;
}


/* Golos Text - Weight 400 */
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-400-normal.b7c74f6c55d7c880d4d0.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-400-normal.40a21a29c90813eac94c.woff) format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-ext-400-normal.d42ed56e7ad7da037e0d.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-ext-400-normal.764c62ae6af48d90482f.woff) format('woff');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Golos Text - Weight 500 */
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-500-normal.91d83dd99f916cb9be63.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-500-normal.774a8cb4ea23dc5fb0ff.woff) format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-ext-500-normal.4327a1f2d87b8dd31f0a.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-ext-500-normal.3e721ece78a45b813f81.woff) format('woff');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Golos Text - Weight 600 */
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-600-normal.98c9ba86987380299835.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-600-normal.4510f01388fc8ea2580d.woff) format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-ext-600-normal.ca806b0ce9844f87ae1d.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-ext-600-normal.066451d81a2d89f8a95a.woff) format('woff');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Golos Text - Weight 700 */
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-700-normal.2eccd861e0a81c8cd001.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-700-normal.ddab2638b95ad0522ef3.woff) format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/golos-text-latin-ext-700-normal.5818ee9da316e1be793c.woff2) format('woff2'),
       url(/assets/fonts/golos-text-latin-ext-700-normal.118bf3c77e9d170f854e.woff) format('woff');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
}

/* Typography Hierarchy - H1 to H6 */
h1 {
  font-family: 'Golos Text', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h2 {
  font-family: 'Golos Text', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

h3 {
  font-family: 'Golos Text', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

h4 {
  font-family: 'Golos Text', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

h5 {
  font-family: 'Golos Text', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

h6 {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

#root {
  width: 100%;
  min-height: 100vh;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


/* ============================================
   RESPONSIVE STYLES FOR NECON WEBSITE
   ============================================ */

/* ============================================
   GLOBAL RESPONSIVE STYLES
   ============================================ */

/* Typography Responsive Adjustments */
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 16px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 16px;
  }
}

/* ============================================
   HEADER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 0.65rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .header-container {
    flex-wrap: nowrap;
  }

  .logo-image {
    height: 45px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  /* Mobile menu is handled in Header.css with toggle functionality */
  /* These styles are for desktop/tablet view only */
  .nav-menu:not(.menu-open) {
    gap: 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.75rem;
  }

  .logo-image {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  /* Mobile menu styles are handled in Header.css */
}

/* ============================================
   BANNER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .banner {
    min-height: 550px;
  }

  .banner-content {
    padding: 2.5rem 2rem;
    margin: 1.5rem;
  }

  .banner-title {
    font-size: 2.75rem;
  }

  .banner-subtitle {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 500px;
  }

  .banner-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.5rem;
  }

  .banner-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner {
    min-height: 450px;
  }

  .banner-content {
    padding: 1.5rem 1rem;
    margin: 0.75rem;
  }

  .banner-title {
    font-size: 1.6rem;
  }

  .banner-subtitle {
    font-size: 1.25rem;
  }

  .banner-description {
    font-size: 0.95rem;
  }
}

/* ============================================
   USP SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .usp-section {
    padding: 5rem 1.5rem;
  }

  .usp-line1 {
    font-size: 1.75rem;
  }

  .usp-line2,
  .usp-line3 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .usp-section {
    padding: 4rem 1.5rem;
    min-height: 350px;
  }

  .usp-line1 {
    font-size: 1.5rem;
  }

  .usp-line2,
  .usp-line3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .usp-section {
    padding: 3rem 1rem;
    min-height: 300px;
  }

  .usp-line1 {
    font-size: 1.25rem;
  }

  .usp-line2,
  .usp-line3 {
    font-size: 2rem;
  }
}

/* ============================================
   POWER PARKS SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .power-parks-section {
    padding: 3.5rem 1.5rem;
  }

  .power-parks-content {
    grid-template-columns: 1fr;
  }

  .power-parks-image {
    border-radius: 25px;
  }

  .power-parks-info {
    padding: 2.5rem;
  }

  .power-parks-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .power-parks-section {
    padding: 2rem 1rem;
  }

  .power-parks-info {
    padding: 1.5rem;
  }

  .power-parks-title {
    font-size: 1.75rem;
  }

  .power-parks-feature {
    font-size: 1rem;
  }

  .power-parks-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .power-parks-stat-box {
    padding: 1.25rem 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .power-parks-navigation {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .nav-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .power-parks-section {
    padding: 1.5rem 0.75rem;
  }

  .power-parks-info {
    padding: 1.25rem;
  }

  .power-parks-title {
    font-size: 1.5rem;
  }

  .power-parks-feature {
    font-size: 0.95rem;
    line-height: 2.5rem;
  }

  .checkmark-icon {
    width: 20px;
    height: 20px;
  }

  .checkmark-icon svg {
    width: 20px;
    height: 20px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .nav-tab {
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
  }
}

/* ============================================
   SERVICES SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .services-section {
    padding: 4rem 1.5rem;
  }

  .service-card {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .services-slider {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1.5rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .services-title {
    font-size: 1.6rem;
  }

  .service-card {
    flex: 0 0 85%;
    min-width: 85%;
    height: 466px;
  }

  .services-slider-wrapper {
    padding: 1rem 0;
    gap: 0.5rem;
  }

  .service-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .service-card-content {
    padding: 2rem;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 2.5rem 1rem;
  }

  .services-title {
    font-size: 1.75rem;
  }

  .services-slider-wrapper {
    gap: 0.25rem;
  }

  .service-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .service-card {
    flex: 0 0 90%;
    min-width: 90%;
    height: 466px;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-icon-circle {
    width: 50px;
    height: 50px;
  }

  .service-icon-symbol {
    font-size: 1.25rem;
  }

  .service-card-content {
    padding: 1.5rem;
  }
}

/* ============================================
   DIGITAL SECURITY SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .digital-security-section {
    padding: 4rem 1.5rem;
  }

  .digital-security-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .digital-security-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .digital-security-section {
    padding: 3rem 1.5rem;
  }

  .digital-security-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .digital-security-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .digital-security-card {
    padding: 2rem;
  }

  .security-card-title {
    font-size: 1.25rem;
  }

  .security-card-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .digital-security-section {
    padding: 2.5rem 1rem;
  }

  .digital-security-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .digital-security-card {
    padding: 1.5rem;
  }

  .security-icon {
    width: 50px;
    height: 50px;
  }

  .security-icon svg {
    width: 20px;
    height: 20px;
  }

  .security-card-title {
    font-size: 1.1rem;
  }

  .security-card-description {
    font-size: 0.9rem;
  }
}

/* ============================================
   BLOGS NEWS SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .blogs-news-section {
    padding: 4rem 1.5rem;
  }

  .blogs-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .blogs-news-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .blogs-news-section {
    padding: 3rem 1.5rem;
  }

  .blogs-news-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .blogs-news-title {
    font-size: 1.6rem;
  }

  .blogs-news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card-image-wrapper {
    height: 200px;
  }

  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blogs-news-section {
    padding: 2.5rem 1rem;
  }

  .blogs-news-title {
    font-size: 1.75rem;
  }

  .blog-card-image-wrapper {
    height: 180px;
  }

  .blog-card-content {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 1rem;
  }

  .blog-card-description {
    font-size: 0.9rem;
  }
}

/* ============================================
   FOOTER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .footer {
    padding: 3rem 1.5rem 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
  }

  .footer-nav-columns {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-nav-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-certifications {
    justify-content: center;
  }

  .subscription-form {
    flex-direction: column;
  }

  .subscription-input {
    min-width: 100%;
  }

  .subscription-button {
    width: 100%;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .footer-bottom-container {
    padding: 0 1.5rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 1rem 0;
  }

  .footer-nav-columns {
    grid-template-columns: 1fr;
  }

  .footer-certifications {
    gap: 1rem;
  }

  .iso-logo {
    width: 45px;
    height: 45px;
  }

  .footer-bottom {
    padding: 1.25rem 0;
  }

  .footer-bottom-container {
    padding: 0 1rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }

  .subscription-heading {
    font-size: 1.25rem;
  }

  .footer-nav-heading {
    font-size: 1.25rem;
  }
}

/* ============================================
   APP & GENERAL LAYOUT RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .home-page {
    padding: 1.5rem;
  }

  .home-content {
    padding: 1.5rem 0;
  }

  .home-content h1 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .home-page {
    padding: 1rem;
  }

  .home-content {
    padding: 1rem 0;
  }

  .home-content h1 {
    font-size: 1.75rem;
  }

  .home-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .home-page {
    padding: 0.75rem;
  }

  .home-content {
    padding: 0.75rem 0;
  }

  .home-content h1 {
    font-size: 1.5rem;
  }

  .home-content p {
    font-size: 0.95rem;
  }
}

/* ============================================
   PAGE-SPECIFIC RESPONSIVE STYLES
   ============================================ */

/* Our Story Page */
@media (max-width: 768px) {
  .our-story-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .our-story-page {
    padding: 1.5rem 0.75rem;
  }
}

/* Leadership Page */
@media (max-width: 1024px) {
  .leadership-page {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .leadership-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .leadership-page {
    padding: 1.5rem 0.75rem;
  }
}

/* Group of Companies Page */
@media (max-width: 1024px) {
  .group-companies-page {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .group-companies-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .group-companies-page {
    padding: 1.5rem 0.75rem;
  }
}

/* Infrastructure Page */
@media (max-width: 1024px) {
  .infrastructure-page {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .infrastructure-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .infrastructure-page {
    padding: 1.5rem 0.75rem;
  }
}

/* Solutions Page */
@media (max-width: 1024px) {
  .solutions-page {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .solutions-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .solutions-page {
    padding: 1.5rem 0.75rem;
  }
}

/* Blogs Page */
@media (max-width: 1024px) {
  .blogs-page {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .blogs-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .blogs-page {
    padding: 1.5rem 0.75rem;
  }
}

/* Reach Us Page */
@media (max-width: 1024px) {
  .reach-us-page {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .reach-us-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .reach-us-page {
    padding: 1.5rem 0.75rem;
  }
}

/* Coming Soon Page */
@media (max-width: 768px) {
  .coming-soon-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .coming-soon-page {
    padding: 1.5rem 0.75rem;
  }
}

/* ============================================
   UTILITY CLASSES FOR RESPONSIVE DESIGN
   ============================================ */

/* Hide on mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide on desktop */
@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Show only on mobile */
@media (min-width: 769px) {
  .show-mobile-only {
    display: none !important;
  }
}

/* Show only on desktop */
@media (max-width: 768px) {
  .show-desktop-only {
    display: none !important;
  }
}

/* Container max-width adjustments */
@media (max-width: 1400px) {
  .container,
  .header-container,
  .footer-container,
  .services-container,
  .power-parks-container,
  .digital-security-container,
  .blogs-news-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  .container,
  .header-container,
  .footer-container,
  .services-container,
  .power-parks-container,
  .digital-security-container,
  .blogs-news-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .container,
  .header-container,
  .footer-container,
  .services-container,
  .power-parks-container,
  .digital-security-container,
  .blogs-news-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ============================================
   IMAGE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ============================================
   FORM ELEMENTS RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* ============================================
   GRID SYSTEM RESPONSIVE ADJUSTMENTS
   ============================================ */

/* 3-column grids become 2-column on tablet */
@media (max-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 2-column grids become 1-column on mobile */
@media (max-width: 768px) {
  .grid-3-col,
  .grid-2-col {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TOUCH-FRIENDLY ELEMENTS
   ============================================ */

@media (max-width: 768px) {
  button,
  .nav-link,
  .dropdown-item,
  .service-nav-btn {
    min-height: 44px; /* Minimum touch target size */
    min-width: 44px;
  }
}

/* ============================================
   SCROLL BEHAVIOR
   ============================================ */

@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    width: 100%;
  }
}


