body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #f4f7fb;
    color: #001f3f;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.solar-header {
    background-color: #0278ff;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.solar-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.solar-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Grid */
.solar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solar-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.solar-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.solar-item h3 {
    color: #0278ff;
    margin-bottom: 0.5rem;
}

.solar-item p {
    font-size: 0.95rem;
    color: #333;
}

/* Footer */
.solar-footer {
    background-color: #001f3f;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.video-content {
    background: #fff;
    padding: 1rem;
    z-index: 1000;
    border-radius: 8px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    box-sizing: border-box;
    position: relative;
}

.video-content video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 6px;
    display: block;
}

.close-btn {
    position: absolute;
    top: 10px;
    z-index: 1001;
    right: 15px;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .solar-header h1 {
        font-size: 2rem;
    }

    .solar-grid {
        gap: 1.5rem;
    }

    .video-content {
        max-width: 95%;
    }

    .close-btn {
        font-size: 1.6rem;
    }
}
/* Minimal Navbar for Solar Page */
.solar-navbar {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.solar-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.solar-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.solar-logo span {
  font-weight: 700;
  font-size: 1.4rem;
  color: #001f3f;
}

.social-icons {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.social-icons a {
  color: #00bcd4;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.social-icons {
  margin-bottom: 0.8rem;
}

.social-icons a {
  margin: 0 0.5rem;
  display: inline-block;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
