/* Reset & Base */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Roboto', sans-serif;
  background:#fff;
  color:#333;
  line-height:1.6;
}


/* Hero Section */
.hero {
  position: relative;
  background: url('images/HERO_01.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%; /* ensures content doesn't overflow */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #0a3d62;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background:#222;
}

/* Divider Styles */
.divider {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-shape {
  display: none; /* hide all by default */
  position: relative;
  width: 100%;
  height: 150px;
  fill: #d3d3d3; /* light gray color */
}


/* Enable ONE divider */
.divider .wave { display: block; }    

/* =========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero {
    height: 60vh;
  }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .btn { padding: 10px 22px; font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .hero {
    height: 55vh;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }
  .hero h1 { font-size: 1.6rem; margin-bottom: 15px; }
  .hero p { font-size: 0.9rem; margin-bottom: 20px; }
  .btn { padding: 8px 18px; font-size: 0.85rem; }
}






 /* ================== About Section =============== */



 /* About Section */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px 10%;
  flex-wrap: wrap;
  background: #fff;
  font-family: Arial, sans-serif;
}

/* Left Content */
.about-left {
  flex: 1;
  min-width: 340px;
}

.about-tag {
  display: inline-block;
  background: #fdeaea;
  color: #444;
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-title {
  font-size: 40px;
  color: #444;
  margin-bottom: 20px;
}

.about-text {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.highlight-icon {
  color: #ff4d4d;
  font-size: 20px;
}

.highlight-text {
  font-weight: 600;
  font-size: 17px;
  color: #0a3d62;
}

/* Button */
.about-btn {
  background: #0a3d62;
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background:#0a3d62;
}

.about-btn-link {
  text-decoration: none;
}

/* Right Content */
.about-right {
  flex: 1;
  min-width: 340px;
  text-align: center;
  position: relative;
  margin-top: 40px;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
}

/* Info Boxes */
.about-box {
  position: absolute;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 220px;
}

.about-box h3 {
  margin: 0;
  font-size: 28px;
  color:#0a3d62;
}

.box-title {
  margin: 6px 0 0;
  font-size: 15px;
  color: #444;
}

.box-desc {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
}

/* Specific Box Positions */
.success-box {
  top: -35%;
  right: 0%;
  background: #fff5f5;
}

.exp-box {
  bottom: -27%;
  left: 0%;
  background: #fff0f0;
}

/* ------------------------- */
/* RESPONSIVE DESIGN */
/* ------------------------- */

/* Tablets */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 6%;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-box h3 {
    font-size: 24px;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }

  .about-left {
    margin-bottom: 40px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-highlight {
    justify-content: center;
  }

  .about-btn {
    font-size: 15px;
    padding: 12px 22px;
  }

  .about-right {
    margin-top: 20px;
  }

  /* Place info boxes below image for better readability */
  .about-box {
    position: relative;
    display: block;
    margin: 15px auto;
    max-width: 280px;
  }

  .success-box,
  .exp-box {
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-box h3 {
    font-size: 22px;
  }

  .box-title {
    font-size: 14px;
  }

  .box-desc {
    font-size: 12px;
  }
}


/* ===== COMPANY SECTION ===== */
.company-section {
  background: linear-gradient(to right, #0a3d62 60%, #f7f7f7 40%);
  padding: 50px 20px;
}

.company-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  color: #fff;
}

.company-col {
  flex: 1;
  padding: 20px;
}

.company-col.left {
  background: #0a3d62;
}

.company-col.right {
  background: #f7f7f7;
  color: #333;
  position: relative;
}

.highlight-text {
  font-size: 1.4rem;
  font-style: italic;
  color: #155724;
  margin-bottom: 20px;
}

.info-box {
  background: #fff3cd;
  padding: 20px;
  border-left: 5px solid #e67e22;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .company-section {
    padding: 40px 15px;
  }

  .highlight-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .company-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .company-section {
    background: #0a3d62; /* Simplify background on small screens for better readability */
    padding: 40px 10px;
  }

  .company-col.left,
  .company-col.right {
    width: 100%;
    padding: 25px 15px;
  }

  .company-col.right {
    background: #f7f7f7;
    color: #333;
    border-radius: 12px;
    margin-top: 20px;
  }

  .highlight-text {
    font-size: 1.1rem;
  }

  .info-box {
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .company-section {
    padding: 30px 8px;
  }

  .highlight-text {
    font-size: 1rem;
  }

  .info-box {
    padding: 12px;
  }

  .info-box h3 {
    font-size: 1rem;
  }

  .company-col {
    padding: 15px;
  }
}

/* ===== WHY SOLAR SECTION ===== */
/* ===== WHY SOLAR SYSTEM SECTION ===== */
.why-section {
  padding: 100px 20px;
  background: #fff;
  font-family: "Raleway", sans-serif;
  color: #444; /* Set default text color */
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.why-col {
  flex: 1 1 45%;
  color: #444; /* Apply text color */
}

.why-col h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #444;
  font-weight: 700;
  position: relative;
}

.why-col ul {
  list-style-type: disc;
  padding-left: 25px;
  line-height: 1.7;
}

.why-col ul li {
  margin-bottom: 12px;
  color: #444;
  font-size: 1rem;
}

.why-col img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  display: block;
  margin: 0 auto 20px;
}

.info-box {
  background: #f8f8f8;
  padding: 25px 30px;
  border-radius: 10px;
  color: #444;
}

.info-box h3 {
  margin-bottom: 15px;
  color: #444;
  font-weight: 700;
  font-size: 1.4rem;
}

.info-box p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* //////////// END/////////////////// */


/* Container */
/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0f0f0f);
  color: #eee;
  padding: 80px 25px 35px;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.08);
}


/* Container */
.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 50px;
}

/* Section Titles */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}


.footer-col h3:hover::after,
.footer-col h4:hover::after {
  width: 80px;
}

/* Text & Links */
.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0a3d62, #ff6b6b);
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #222;
  padding: 12px;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #0a3d62, #ff6b6b);
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
}

.social-links a img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: rotate(10deg);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #2a2a2a;
  margin-top: 50px;
  padding-top: 18px;
  font-size: 0.9rem;
  color: #aaa;
  position: relative;
}

.footer-bottom span {
  color: #0a3d62;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom span:hover {
  color: #ff6b6b;
}

/* ========== RESPONSIVE FOOTER ========== */
/* Mobile View Enhancements */
/* ========== RESPONSIVE FOOTER ========== */
/* Mobile View Enhancements */
@media (max-width: 480px) {
  .footer {
    padding: 45px 15px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .footer-col {
    margin-bottom: 25px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  /* Center footer logo */
  .footer-logo {
    margin: 0 auto 15px auto;
    display: block;
  }

  /* Remove underline bar effect */
  .footer-col h3::after,
  .footer-col h4::after {
    display: none;
  }

  .footer-col h3, 
  .footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
  }

  .footer-col p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
  }

  /* Links simple, centered */
  .footer-col ul li {
    margin-bottom: 10px;
  }
  .footer-col ul li a {
    font-size: 0.95rem;
    display: inline-block;
    padding: 4px 0;
    color: #bbb;
  }

  /* Social icons row, bigger touch area */
  .social-links {
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
  }

  .social-links a {
    margin: 0;
    padding: 10px;
    border-radius: 50%;
    background: #1f1f1f;
    transition: transform 0.3s ease;
  }

  .social-links a:hover {
    transform: translateY(-3px) scale(1.08);
  }

  .footer-bottom {
    font-size: 0.85rem;
    margin-top: 30px;
    padding-top: 15px;
    line-height: 1.4;
    color: #aaa;
  }
}

/* /////////////////////////// END ////////////////// */

/* ===== IMPACT SECTION ===== */
/* ==== IMPACT SECTION ==== */
/* ==== IMPACT SECTION ==== */
#impact {
  position: relative;
  background: url('images/HERO__02.jpg') center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  
}

#impact .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  
}

#impact h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.item:nth-child(1) { animation-delay: 0.2s; }
.item:nth-child(2) { animation-delay: 0.4s; }
.item:nth-child(3) { animation-delay: 0.6s; }
.item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.icon {
  background:  #0a3d62;
  color: #fff;
  font-size: 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  transition: 0.3s ease;
  box-shadow: 0 0 0 rgba(164, 224, 122, 0.6);
}

.icon:hover {
  box-shadow: 0 0 25px rgba(164, 224, 122, 0.9);
  transform: scale(1.1);
}

.label {
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.85;
}

.item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.counter {
  color: #a4e07a;
}

/* 
////////////////////// TESTIMONIAL ///////////////////// */

