/*
Theme Name: on grid power energy 
Author : faizy
Version : 2.0
*/


/* Reset & Body */
* {   
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

 body {
  background-color: #fff;
  color: #0b1540;
  height: 100%;
/*     padding-top: 0px;  */
}
html {
  margin-top: 0 !important;
}

/* ===== NAVBAR ===== */
.navbar {
  background:transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.8rem 2rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* =========================
   Logo
========================= */
.logo img {
  height: 80px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
	 filter: drop-shadow(0 0 2px rgba(204, 214, 252, 0.2));
}

.logo img:hover {
  transform: scale(1.05);
}

/* =========================
   Nav Links
========================= */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px; /* space between text and line */
  width: 0;
  height: 2px;
  background-color: #FFC50F; /* line color */
  transition: width 0.3s ease;
}

.nav-links ul li a:hover {
  color:#FFC50F;
}

.nav-links ul li a:hover::after {
  width: 100%;
}


/* =========================
   Buttons
========================= */
.btn.btn-primary {
  background: #f9d423;
  color: #000000;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight:500;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn.btn-primary:hover {
  background: #f6a700;
}

/* =========================
   Hamburger Icon
========================= */
/* Default hamburger color */
/* Hamburger default */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Turn into X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Page-specific colors */
body.page-id-7 .hamburger span,
body.page-id-11 .hamburger span {
  background: #40A2E3;
}




/* =========================
   Mobile Menu Styles
========================= */
.nav-links {
  position: fixed;
  top: 0;
  right: -150%;
  height: 100vh;
  width: 45%;
  background: rgba(6, 5, 5, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;

}

.nav-links.show {
  right: 0;
}

.nav-links ul {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-links ul li a {
  color: #33f56d;
   
  font-size: 1.2rem;
}

/* Close button (inside mobile menu) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 4rem;
  color: #fff;
  cursor: pointer;
  display: none; 
  background: none;
  border: none;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.close-btn:hover {
  transform: scale(1.2);
  color: red;
   transition: transform 3s ease;
}

/* =========================
   Responsive Media Queries
========================= */

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .desktop-btn {
    display: none;
  }

  .nav-links {
    right: -100%;
    width: 75%;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 2rem;
  }

  .nav-links.show {
    right: 0;
  }

  .mobile-btn {
    display: inline-block;
  }

  .close-btn {
    display: block;
  }
}

/* --- Desktop (≥ 901px) --- */
@media (min-width: 901px) {
  .nav-links {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    background: transparent;
    justify-content: flex-end;
  }

.nav-links ul {
  display: flex;
  flex-direction: row;
  padding: 12px 30px;
  gap: 5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);

}


  .mobile-btn {
    display: none;
  }

  .close-btn {
    display: none;
  }
}


/* --- Small screens (≤ 500px) --- */
@media (max-width: 500px) {
  .nav-links {
    width: 75%;
  }

  .nav-links ul li a {
    font-size: 2rem;
  }

  .btn.btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .logo img {
    height: 50px;
  }
}


/* ===== HERO SECTION ===== */.hero {
  height: 100vh; /* Full viewport height */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Dark overlay on background for better text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Hero content container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

/* Hero heading */
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
 font-style:bold
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero subtext */
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #f0f0f0;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero button */
.btn-hero {
  background: linear-gradient(135deg, #8af923, #00f673);
  color: #000000;
  padding: 15px 35px;
  border: none;
  font-weight: 800;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(249, 180, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #f6a700, #f9d423);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 180, 0, 0.4);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* 🌟 Marquee Overlayed on Image */
.marquee-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background:transparent; 
  padding: 10px 0;
  overflow: hidden;
  z-index: 3;
 
}

/* Moving text with gradient glow */
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 24px;
  margin-bottom:10px
  font-weight: 800;
  background: linear-gradient(90deg, #00ff88, #00cc44);;
  -webkit-background-clip: text;
/*   -webkit-text-fill-color: green; */
/*   text-shadow: 0 0 8px rgba(0, 255, 100, 0.8), 0 0 15px rgba(0, 255, 100, 0.4); */
  animation: moveText 25s linear infinite;
  white-space: nowrap;
}
.r-1{
color:yellow;
font-weight:800;
text-shadow:none
}
.r-2{
color:yellow;
font-weight:800;
text-shadow:none
}

/* Keyframes */
@keyframes moveText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Animation for hero content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and small desktops */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero {
    height: 100vh; /* Slightly shorter on tablets */
    min-height: 600px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 0 15px;
  }
  
  .btn-hero {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
	 
/*     margin-bottom: 1rem; */
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    
  }
  
  .hero-content {
    max-width: 95%;
    padding: 0 10px;
  }
  
  .btn-hero {
    padding: 12px 25px;
    font-size: 0.9rem;
    border-radius: 25px;
  }
}


/* Very small mobile devices */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .btn-hero {
    padding: 10px 22px;
    font-size: 0.85rem;
  }
}
.energy-section {
  padding: 60px 20px;
  background: #fff;
}

.energy-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left image */
.energy-image {
  flex: 1 1 50%;
}

.energy-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  border-radius: 20px;
}

/* Right content */
.energy-content {
  flex: 1 1 45%;
}

.energy-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.energy-content .underline {
  width: 100%;
  max-width: 300px;
  height: 4px;
  background: #4caf50;
  margin-bottom: 25px;
}

/* Text list */
.energy-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.energy-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Green square bullets */
.energy-content ul li::before {
  content: "■";
  color: #4caf50;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .energy-container {
    flex-direction: column;
    text-align: center;
  }

  .energy-content {
    flex: 1 1 100%;
  }

  .energy-content h2 {
    font-size: 1.6rem;
  }

  .energy-content .underline {
    margin: 0 auto 25px;
  }

  .energy-content ul li {
    text-align: left;
    margin-left: 10px;
  }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-content {
    transform: scale(0.9);
  }
}

/* High-resolution displays */
@media (min-width: 1400px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
  }
  
  .btn-hero {
    padding: 18px 40px;
    font-size: 1.2rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .hero::before {
    background: rgba(0, 0, 0, 0.6);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
  }
  
  .btn-hero:hover {
    transform: none;
  }
}
/* ===== FOOTER ===== */
.footer {
  background:linear-gradient(135deg, #30ae00, #007532);
  color: #fff;
  padding: 60px 0 0;
  margin-top: auto;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; 
	gap: 40px; 
}

/* Footer Columns */
.footer-col h2.logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f9d423;
  letter-spacing: 1px;
  text-align: center;
  justify-content:center;
}

.footer-col h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f9d423;
  position: relative;
  text-align: center;
}

/* .footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: #f9d423;
} */

.footer-col a{
color:#fff;
font-size:1rem;
font-weight:400

}
.footer-col p {
  line-height: 1.5;
  color: #e0e0e0;
  margin-bottom: 15px;
  text-align: center;
}
.f-1{
margin-bottom:20px
	color:yellow
}

/* Quick Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-col ul li a:hover {
  color: #f9d423;
  transform: translateX(5px);
}

.footer-col ul li a::before {
  content: '▸';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #f9d423;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  left: -12px;
}
/* .footer-col-map{
border-radius:20px;
	background:red;
} */

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background:transparent;
  border-radius: 50%;
  color: whitesmoke;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: #f9d423;
  color: #0b1540;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(249, 212, 35, 0.3);
}

.social-links i {
  font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
	text-align: center;
  }
  
  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small Tablets */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    padding: 0 15px;
  }
  
  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-col h2.logo {
    font-size: 1.6rem;
  }
  
  .footer-col h3 {
    font-size: 1.2rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-col:first-child {
    grid-column: 1;
  }
  
  .footer-col h2.logo {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .footer-col h3 {
    font-size: 1.4rem;
  }
/*   
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  } */
  
  .footer-col ul li a:hover {
    transform: none;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
  }
  
  .social-links i {
    font-size: 1rem;
  }
  
  .footer-bottom {
    padding: 15px 0;
    margin-top: 40px;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-container {
    padding: 0 10px;
    gap: 25px;
  }
  
  .footer-col h2.logo {
    font-size: 1.3rem;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .footer-col:first-child {
    grid-column: 1;
  }
}

/* High-Resolution Displays */
@media (min-width: 1400px) {
  .footer-container {
    max-width: 1400px;
  }
  
  .footer-col h2.logo {
    font-size: 2rem;
  }
  
  .footer-col h3 {
    font-size: 1.4rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .footer {
    background:linear-gradient(135deg, #30ae00, #007532);
  }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-col ul li a,
  .social-links a {
    transition: none;
  }
  
  .footer-col ul li a:hover {
    transform: none;
  }
  
  .social-links a:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .footer {
    background: #f5f5f5 !important;
    color: #000 !important;
    border-top: 2px solid #000;
  }
  
  .social-links {
    display: none;
  }
}

/* ====== CARDS SECTION ====== */
.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* ====== CARD ====== */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgb(2, 168, 2);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ====== CARD CONTENT ====== */
.card-logo {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.3rem;
  color: #0b1540;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  flex: 1 1 auto;
  margin-bottom: 1.5rem;
}

/* ====== BUTTON ====== */
.card-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.cards-header {
  text-align: center;
  margin-bottom: 40px;
}

.cards-header h2 {
  font-size: 2rem;
  color: #222;
  font-weight: 600;
  margin-top: 30px;
}

.btn-card {
  background: #02ce02;
  color: #ffffff;
  border: none;
  padding: 5px 15px 7px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
}

.btn-card:hover {
  background: #f6a700;
  transform: translateY(-2px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .cards-section {
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}
/* contact us */


.contact-section {
  min-height: 100vh;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.container {
  max-width: 700px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-top: 20px;

  /* FIX FOR BIG SCREENS */
  max-width: 280px;      /* Button will not grow bigger than this */
  width: 100%;           /* Still responsive */
  text-align: center;    /* Centers text */
}

/* Hover Effect */
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 768px) {
  .whatsapp-btn {
    max-width: 240px;
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .whatsapp-btn {
    max-width: 70%;
    font-size: 15px;
    padding: 12px 18px;
  }
}

.subsidy{
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-top: 20px;

  /* FIX FOR BIG SCREENS */
  max-width: 280px;      /* Button will not grow bigger than this */
  width: 100%;           /* Still responsive */
  text-align: center;    /* Centers text */
}

/* Hover Effect */
.sybsidy:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 768px) {
  .subsidy {
    max-width: 240px;
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .subsidy {
    max-width: 70%;
    font-size: 13px;
	  font-weight:800
    padding: 12px 18px;
  }
}

}
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.btn-submit {
  display: inline-block;
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #0056b3;
}



/* 
////About/// */

.section-header {
            text-align: center;
             margin-top: 5%;
            animation: fadeInDown 1s ease;
	      
        }

        
        .main-heading {
            color: #1e3a8a;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
        }

        .heading-decoration {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #02b358, #76fe06);
            margin: 20px auto;
            border-radius: 2px;
        }

        .team-grid {
            display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 10px;
           padding-left: 10px;
           padding-right: 10px;
        }

        .team-card {
            background:#f0f0f0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 10px 10px 10px 10px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

        .team-card:nth-child(1) { animation-delay: 0.1s; }
        .team-card:nth-child(2) { animation-delay: 0.2s; }
        .team-card:nth-child(3) { animation-delay: 0.3s; }
        .team-card:nth-child(4) { animation-delay: 0.4s; }

        .team-card:hover {
/*             transform: translateY(-10px); */
            box-shadow: 40px 40px 50px 40px rgba(203, 250, 190);
        }

        .image-container {
            position: relative;
            overflow: hidden;
            height: 350px;
        }

        .team-card img {
            width: 100%;
            height: 120%;
            object-fit:contain;
            transition: transform 0.6s ease;
            filter: brightness(0.95);
        }

        .team-card:hover img {
/*             transform: scale(1.1) rotate(2deg); */
/*             filter: brightness(1); */
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
			opacity:70%;
            background:#63A361;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .team-card:hover .image-overlay {
            transform: translateY(0);
        }

        .overlay-text {
            color: white;
			
			text-align:end
            font-size: 14px;
            line-height: 1.6;
        }

        .team-info {
            padding: 25px;
			
            text-align: center;
            background:linear-gradient(to bottom, #f8fafc, white);
        }

        .team-name {
            color: #1e3a8a;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 2px;
            letter-spacing: 0.5px;
        }

        .team-role {
            color:black;
            font-size: 15px;
            font-weight: 500;
        }

        .view-all-btn {
            position: absolute;
            top: 60px;
            right: 40px;
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .view-all-btn:hover {
            gap: 15px;
        }

        .arrow {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover .arrow {
            transform: translateX(5px);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.about-section{

	margin-top:90px
}
        @media (max-width: 768px) {
            .about-section {
             padding:5px;
				
            }

            .main-heading {
                font-size: 32px;
            }

            .view-all-btn {
                position: static;
                justify-content: center;
                margin-top: 20px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .image-container {
                height: 300px;
            }
        }
        

        
          .testimonial-section {
            width: 100%;
        }

        .section-header {
            text-align: center;
           
            padding: 14px 20px;
            animation: fadeInDown 1s ease;
        }

        
        .main-heading {
            color: rgb(0, 0, 0);
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .sub-heading {
            color: rgba(0, 0, 0, 0.9);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .carousel-wrapper {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
            background-color:rgba(27, 253, 27, 0.242);
        }

        .carousel-wrapper::before,
        .carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
           
        }

        .carousel-wrapper::before {
            left: 0;
            /* background: linear-gradient(to right, #1e3a8a, transparent); */
        }

        .carousel-wrapper::after {
            right: 0;
            /* background: linear-gradient(to left, #3b82f6, transparent); */
        }

        .carousel-track {
            display: flex;
            gap: 30px;
            animation: scroll 15s linear infinite;
            width: fit-content;
           background-color:transparent;
        }

        .image-card {
            width: 400px;
            min-width: 400px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

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

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 32px;
            }

            .sub-heading {
                font-size: 16px;
            }

            .image-card {
                width: 300px;
                min-width: 300px;
                height: 400px;
            }

            .carousel-wrapper::before,
            .carousel-wrapper::after {
                width: 50px;
            }
        }



         .services-container {
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto; /* ✅ centers the container horizontally */
}

        
        .section-header {
            text-align: center;
            
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #1a3c5e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff9d00, #ff6b00);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #5a7a9c;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            padding: 40px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background:#27be5e;
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
           
            border-radius: 50%;
            margin-bottom: 25px;
            padding: 15px;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .card-icon {
            transform: scale(1.1);
        }
        
        .card-icon img {
            width: 85px;
            height: 75px;
           
        }
        
        .service-title {
            font-size: 1.5rem;
            color: #1a3c5e;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-description {
            color: #5a7a9c;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            color: #1f7d41;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        
        .learn-more-btn:hover {
            color: #e85c00;
            transform: translateX(5px);
        }
        
        .learn-more-btn::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .learn-more-btn:hover::after {
            transform: translateX(5px);
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }


/* Gallery Sections */
.gallery-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  background-color: #fff;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.gallery-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* -------- GRID: 3 Cards Per Row -------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 20px;
  margin-bottom: 35px;
}

.gallery-grid:last-of-type {
  margin-bottom: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit:fill;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* -------- Responsive Tweaks -------- */

/* Tablets and small laptops */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 card */
    gap: 12px;
  }

  .gallery-section {
    padding: 40px 15px;
  }

  .gallery-section h2 {
    font-size: 1.5rem;
  }

  .gallery-section p {
    font-size: 0.95rem;
  }
}
.gallery-cta {
  background: transparent;
  padding: 60px 20px;
  text-align: center;
  border: 2px solid #63A361;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1000px;
/* box-shadow: 0 4px 15px rgba(0, 255, 0, 0.6); */
  transition: 0.3s ease;
}

.gallery-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.gallery-cta h2 .sol-1 {
  color: #63A361; 
}

.gallery-cta p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.gallery-cta .btn {
  background: #63A361;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.gallery-cta .btn:hover {
  background: #222;
  color: #fff;
  transform: translateY(-3px);
}
/* Tablets */
@media (max-width: 768px) {
  .gallery-cta {
    padding: 50px 20px;
	  margin-left:15px;
	  margin-right:15px;
  }

  .gallery-cta h2 {
    font-size: 1.8rem;
  }

  .gallery-cta p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery-cta {
    padding: 50px 15px;
	  margin-left:15px;
	  margin-right:15px;
  }

  .gallery-cta h2 {
    font-size: 1.6rem;
  }

  .gallery-cta p {
    font-size: 0.95rem;
  }

  .gallery-cta .btn {
    font-size: 1rem;
    padding: 10px 22px;
  }
}


/* Contact page */
.contact-hero {
  position: relative;
  height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* TEXT SECTION */
.contact-text {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  min-width: 300px;
}

.contact-text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.contact-text p {
  font-size: 1.1rem;
  margin-top: 12px;
  line-height: 1.6;
  opacity: 0.9;
}

/* FORM BOX */
.contact-form-box {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  min-width: 320px;
	
}

.contact-form-box h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.contact-form-box p {
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.4;
  text-align: center;
  opacity: 0.8;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box .form-row {
  display: flex;
  gap: 10px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form-box textarea {
  resize: vertical;
  height: 100px;
}

.contact-form-box button {
  background-color: #000000;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-box button:hover {
  background-color: ##02d677;
  transform: translateY(-2px);
}

/* ✅ Responsive Styles */

/* Large tablets */
@media (max-width: 1024px) {
  .contact-text h1 {
    font-size: 3rem;
  }
  .contact-content {
    gap: 30px;
  }
}

/* Tablets & Small laptops */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-text {
    align-items: center;
    padding: 10px;
  }

  .contact-text h1 {
    font-size: 2.5rem;
  }

  .contact-text p {
    font-size: 1rem;
  }

  .contact-form-box {
    width: 90%;
    padding: 30px 20px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .contact-hero {
    height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .contact-text h1 {
    font-size: 3rem;
  }

  .contact-text p {
    font-size: 1rem;
  }

  .contact-form-box {
    padding: 25px 15px;
  }

  .contact-form-box input,
  .contact-form-box textarea {
    font-size: 1rem;
  }

  .contact-form-box button {
    font-size: 0.9rem;
  }
}


