/* Global Styles */
:root {
    --primary-color: #FFA500;
    --secondary-color: #FF8C00;
    --dark-color: #1E3A8A;
    --light-color: #F8FAFC;
    --text-color: #333;
    --text-light: #666;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  .section-dark {
    background-color: #F0F7FF;
  }
  
  .section-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  /* Custom Cursor Styles */
  
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .logo {
    height: 50px;
    width: auto;
  }
  
  nav ul {
    display: flex;
    gap: 1.5rem;
  }
  
  nav ul li a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  .call-now {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .call-now:hover {
    background-color: var(--secondary-color);
  }
  
  .mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
  }
  
  /* Hero Section */
  #hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./image/beautiful-alternative-energy-plant-with-solar-panels.jpg') no-repeat center center/cover;
    color: var(--white);
    padding-top: 80px;
  }
  
  .hero-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 600px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #eb0da9;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  /* About Section */
  .about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .about-image img {
    transition: var(--transition);
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .about-features {
    margin-top: 1.5rem;
  }
  
  .about-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .about-features i {
    color: var(--primary-color);
  }
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    margin-bottom: 1rem;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
  }
  
  .service-link:hover {
    color: var(--secondary-color);
  }
  
  /* Benefits Section */
  .benefits-content {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  .benefits-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .benefits-list {
    flex: 1;
  }
  
  .benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
  }
  
  /* Projects Section */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .project-info {
    padding: 1.5rem;
    background: var(--white);
  }
  
  .project-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  
  .project-details i {
    color: var(--primary-color);
    margin-right: 0.3rem;
  }
  
  .testimonials {
    margin-top: 4rem;
  }
  
  .testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content i {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: rgba(255, 165, 0, 0.2);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .stars {
    color: var(--primary-color);
  }
  
  /* Contact Section */
  .contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .contact-form {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--white);
    padding: 0 5px;
    font-size: 0.8rem;
    color: var(--primary-color);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .info-card:hover {
    transform: translateY(-5px);
  }
  
  .info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .info-card h3 {
    margin-bottom: 0.5rem;
  }
  
  .info-card a {
    color: var(--primary-color);
  }
  
  .info-card a:hover {
    color: var(--secondary-color);
  }
  
  /* FAQ Section */
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background: #f9f9f9;
  }
  
  .faq-question i {
    transition: var(--transition);
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-answer p {
    padding-bottom: 1.5rem;
  }
  
  .faq-item.active .faq-question {
    background: #f9f9f9;
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
  }
  
  /* Footer Styles */
  footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .footer-col p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
  }
  
  /* Social Icons */
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .whatsapp:hover {
    background-color: #25D366;
  }
  
  .facebook:hover {
    background-color: #1877F2;
  }
  
  .instagram:hover {
    background: radial-gradient(circle at 30% 107%, 
      #fdf497 0%, #fdf497 5%, 
      #fd5949 45%, #d6249f 60%, 
      #285AEB 90%);
  }
  
  .justdial:hover {
    background-color: #FFD700;
  }
  
  /* Floating Social Icons */
  .social-icon {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .whatsapp {
    bottom: 120px;
    background-color: #25D366;
  }
  
  .facebook {
    bottom: 180px;
    background-color: #1877F2;
  }
  
  .instagram {
    bottom: 240px;
    background: radial-gradient(circle at 30% 107%, 
      #fdf497 0%, #fdf497 5%, 
      #fd5949 45%, #d6249f 60%, 
      #285AEB 90%);
  }
  
  .justdial {
    bottom: 300px;
    background-color: #FFD700;
    color: #333;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .contact-info i {
    width: 20px;
    text-align: center;
  }
  
  .footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
  }
  
  .footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-legal a:hover {
    color: var(--primary-color);
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    cursor: pointer;
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-content,
    .benefits-content,
    .contact-container {
      flex-direction: column;
    }
    
    .benefits-image {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .header-container {
      padding: 1rem;
    }
    
    nav ul {
      display: none;
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background: var(--white);
      flex-direction: column;
      padding: 1rem;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
      display: flex;
    }
    
    .mobile-menu-button {
      display: block;
    }
    
    .hero-cta {
      flex-direction: column;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-bottom-container {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    .footer-legal {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    /* Show default cursor on mobile */
    html {
      cursor: default;
    }
    
    /* Adjust floating social icons for mobile */
    .social-icon {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
    
    .whatsapp {
      bottom: 100px;
    }
    
    .facebook {
      bottom: 160px;
    }
    
    .instagram {
      bottom: 220px;
    }
    
    .justdial {
      bottom: 280px;
    }
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    .section-container {
      padding: 3rem 1rem;
    }
    
    .service-card,
    .project-card,
    .info-card {
      padding: 1.5rem;
    }
    
    /* Adjust floating social icons for small screens */
    .social-icon {
      width: 36px;
      height: 36px;
      font-size: 14px;
      right: 15px;
    }
    
    .whatsapp {
      bottom: 90px;
    }
    
    .facebook {
      bottom: 140px;
    }
    
    .instagram {
      bottom: 190px;
    }
    
    .justdial {
      bottom: 240px;
    }
  }

  /* Inquiry Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
}

.modal-content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.modal-content form input,
.modal-content form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.modal-content form textarea {
  resize: vertical;
  height: 100px;
}

.modal-content .btn-primary {
  width: 100%;
  background-color: #FFA500;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.modal-content .btn-primary:hover {
  background-color: #e69500;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
