/*
Voltra Solar - Bihar's Trusted Solar Partner
PM Surya Ghar Vendor Website
*/

/* 
---------------------------------------------
CSS Variables - Solar Theme
--------------------------------------------- 
*/
:root {
  --solar-primary: #FF6B35;
  --solar-secondary: #FFB400;
  --solar-accent: #F7931E;
  --eco-green: #2ECC71;
  --eco-dark: #27AE60;
  --trust-navy: #1A2E35;
  --trust-blue: #2980B9;
  --light-bg: #FFF9F0;
  --warm-white: #FFFCF5;
  --text-dark: #2C3E50;
  --text-light: #6C7A89;
  --gradient-solar: linear-gradient(135deg, #FF6B35 0%, #FFB400 100%);
  --gradient-eco: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  --gradient-trust: linear-gradient(135deg, #1A2E35 0%, #2980B9 100%);
  --shadow-soft: 0 10px 40px rgba(255, 107, 53, 0.15);
  --shadow-card: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* 
---------------------------------------------
Global Overrides
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html, body {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

::selection {
  background: var(--solar-primary);
  color: #fff;
}

::-moz-selection {
  background: var(--solar-primary);
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--trust-navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* 
---------------------------------------------
Section Heading Override
--------------------------------------------- 
*/
.section-heading h2 em {
  font-style: normal;
  color: var(--solar-primary);
}

.section-heading h6 {
  color: var(--eco-green);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

/* 
---------------------------------------------
Button Styles
--------------------------------------------- 
*/
.main-button a,
.solar-btn {
  background: var(--gradient-solar);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-button a:hover,
.solar-btn:hover {
  background: var(--gradient-eco);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-solar {
  background: transparent;
  border: 2px solid var(--solar-primary);
  color: var(--solar-primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-solar:hover {
  background: var(--solar-primary);
  color: #fff;
}

.btn-green {
  background: var(--gradient-eco);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-green:hover {
  background: var(--gradient-solar);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* 
---------------------------------------------
Preloader Override
--------------------------------------------- 
*/
.js-preloader {
  background: linear-gradient(135deg, var(--trust-navy) 0%, #0d1a1f 100%);
}

.preloader-inner .dot,
.preloader-inner .dots span {
  background: var(--solar-primary);
}

/* 
---------------------------------------------
Header Override
--------------------------------------------- 
*/
.background-header {
  background: linear-gradient(135deg, var(--trust-navy) 0%, #0d1a1f 100%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.header-area .main-nav .nav li:last-child a {
  background: var(--gradient-solar);
  font-weight: 600;
}

.header-area .main-nav .nav li:last-child:hover a {
  background: var(--gradient-eco);
}

.header-area .main-nav .nav li a.active {
  background-color: rgba(255, 107, 53, 0.2);
}

.header-area.header-sticky .nav li a.active {
  color: #fff;
}

/* Dropdown Menu Styles */
.nav li.has-dropdown {
  position: relative;
}

.nav li.has-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav li.has-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav li.has-dropdown .dropdown-menu li {
  display: block;
  padding: 0;
  border-top: none;
  height: auto;
  line-height: normal;
}

.nav li.has-dropdown .dropdown-menu li a {
  color: var(--trust-navy) !important;
  padding: 10px 25px !important;
  display: block;
  font-size: 14px;
  background: transparent !important;
  border-radius: 0;
  transition: all 0.3s ease;
}

.nav li.has-dropdown .dropdown-menu li a:hover {
  background: var(--light-bg) !important;
  color: var(--solar-primary) !important;
  padding-left: 30px !important;
}

/* 
---------------------------------------------
Banner / Hero Section
--------------------------------------------- 
*/
.main-banner {
  background: linear-gradient(135deg, var(--trust-navy) 0%, #0d1a1f 100%);
  position: relative;
  overflow: hidden;
  padding: 180px 0px 120px 0px;
  border-radius: 0px 0px 80px 80px;
}

.main-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(255, 180, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.main-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(26, 46, 53, 0.8), transparent);
  pointer-events: none;
}

.main-banner .caption h6 {
  color: var(--solar-secondary);
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.main-banner .caption h2 {
  font-size: 52px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.main-banner .caption h2 span {
  color: var(--solar-primary);
}

.main-banner .caption h2:after {
  display: none;
}

.main-banner .caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 35px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 42px;
  font-weight: 800;
  color: var(--solar-primary);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 
---------------------------------------------
Lead Form
--------------------------------------------- 
*/
.lead-form-container {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 10;
}

.lead-form-container h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--trust-navy);
}

.lead-form-container .subtitle {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 14px;
}

.lead-form-container .form-control {
  height: 50px;
  border-radius: 12px;
  border: 2px solid #e8e8e8;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.lead-form-container .form-control:focus {
  border-color: var(--solar-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

.lead-form-container select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236C7A89' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.lead-form-container .submit-btn {
  width: 100%;
  height: 55px;
  background: var(--gradient-solar);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 10px;
}

.lead-form-container .submit-btn:hover {
  background: var(--gradient-eco);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.lead-form-container .govt-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px;
  background: var(--light-bg);
  border-radius: 10px;
}

.lead-form-container .govt-badge img {
  width: 30px;
  height: auto;
}

.lead-form-container .govt-badge span {
  font-size: 12px;
  color: var(--text-light);
}

/* 
---------------------------------------------
Features / Benefits Section
--------------------------------------------- 
*/
.features {
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.features .item {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.features .item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.features .item .image {
  background: var(--gradient-solar);
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.features .item:hover .image {
  background: var(--gradient-eco);
  transform: scale(1.1);
}

.features .item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--trust-navy);
}

.features .item p {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* 
---------------------------------------------
Service Cards
--------------------------------------------- 
*/
.service-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.service-card .card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.service-card .card-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(26, 46, 53, 0.8));
}

.service-card .card-image .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-solar);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card .card-content {
  padding: 30px;
}

.service-card .card-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--trust-navy);
}

.service-card .card-content p {
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card .card-content .learn-more {
  color: var(--solar-primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-card .card-content .learn-more:hover {
  color: var(--eco-green);
  gap: 12px;
}

/* 
---------------------------------------------
PM Surya Ghar Section
--------------------------------------------- 
*/
.pm-surya-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  padding: 100px 0;
  border-radius: 80px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.pm-surya-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.subsidy-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  height: 100%;
}

.subsidy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.subsidy-card .icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-solar);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.subsidy-card .icon i {
  font-size: 28px;
  color: #fff;
}

.subsidy-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--trust-navy);
}

.subsidy-card .amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--solar-primary);
  display: block;
  margin-bottom: 10px;
}

.subsidy-card p {
  font-size: 13px;
  margin-bottom: 0;
}

/* 
---------------------------------------------
Testimonials Section
--------------------------------------------- 
*/
.testimonials-section {
  background: var(--trust-navy);
  padding: 100px 0;
  border-radius: 80px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.testimonials-section .section-heading h6 {
  color: var(--solar-secondary);
}

.testimonials-section .section-heading h2 {
  color: #fff;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-size: 40px;
  color: var(--solar-primary);
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--solar-primary);
}

.testimonial-card .author-info h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 3px;
}

.testimonial-card .author-info span {
  color: var(--solar-secondary);
  font-size: 13px;
}

.testimonial-card .stars {
  color: var(--solar-secondary);
  margin-top: 15px;
  font-size: 14px;
}

/* Video Testimonial */
.video-testimonial {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.video-testimonial img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.video-testimonial .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-solar);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.video-testimonial .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-testimonial .play-btn i {
  color: #fff;
  font-size: 30px;
  margin-left: 5px;
}

/* 
---------------------------------------------
Why Choose Us Section
--------------------------------------------- 
*/
.why-choose-section {
  padding: 100px 0;
}

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.why-item .icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-item:hover .icon {
  background: var(--gradient-solar);
}

.why-item .icon i {
  font-size: 24px;
  color: var(--solar-primary);
  transition: all 0.3s ease;
}

.why-item:hover .icon i {
  color: #fff;
}

.why-item .content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--trust-navy);
}

.why-item .content p {
  font-size: 14px;
  margin-bottom: 0;
}

/* 
---------------------------------------------
CTA Section Override
--------------------------------------------- 
*/
.cta {
  background: transparent;
}

.cta::after {
  display: none;
}

.cta .shop {
  background: var(--gradient-solar);
  padding: 60px;
}

.cta .shop .section-heading h6,
.cta .shop .section-heading h2,
.cta .shop p {
  color: #fff;
}

.cta .shop .section-heading h2 em {
  color: var(--trust-navy);
}

.cta .shop .main-button a {
  background: #fff;
  color: var(--solar-primary);
}

.cta .shop .main-button a:hover {
  background: var(--trust-navy);
  color: #fff;
}

.cta .subscribe {
  background: var(--trust-navy);
}

.cta .subscribe .section-heading h6 {
  color: var(--solar-secondary);
}

.cta .subscribe .section-heading h2 {
  color: #fff;
}

.cta .subscribe .section-heading h2 em {
  color: var(--solar-primary);
}

.cta .subscribe form button {
  background: var(--gradient-solar);
}

.cta .subscribe form button:hover {
  background: var(--gradient-eco);
}

/* 
---------------------------------------------
Footer Override
--------------------------------------------- 
*/
footer {
  background: var(--trust-navy);
  border-radius: 80px 80px 0px 0px;
  margin-top: 100px;
  padding: 80px 0 30px;
}

.footer-content {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.footer-logo h2 span {
  color: var(--solar-primary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gradient-solar);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--solar-primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact li i {
  color: var(--solar-primary);
  font-size: 18px;
  flex-shrink: 0;
}

footer .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.8;
}

footer .copyright a {
  color: var(--solar-primary);
}

/* 
---------------------------------------------
Page Heading Override
--------------------------------------------- 
*/
.page-heading {
  background: linear-gradient(135deg, var(--trust-navy) 0%, #0d1a1f 100%);
  border-radius: 0px 0px 80px 80px;
  padding: 180px 0px 80px 0px;
  position: relative;
  overflow: hidden;
}

.page-heading::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(255, 180, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-heading h3 {
  font-size: 42px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.page-heading .breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}

.page-heading .breadcrumb a {
  color: var(--solar-primary);
}

/* 
---------------------------------------------
Service Detail Page
--------------------------------------------- 
*/
.solution-detail {
  padding: 100px 0;
}

.solution-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--trust-navy);
}

.solution-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 25px;
}

.solution-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.solution-features li i {
  color: var(--eco-green);
  font-size: 16px;
}

/* 
---------------------------------------------
Contact Page Override
--------------------------------------------- 
*/
.contact-page .left-text {
  background: var(--light-bg);
}

.contact-page .left-text .section-heading h6 {
  color: var(--eco-green);
}

.contact-page .right-content form input,
.contact-page .right-content form textarea,
.contact-page .right-content form select {
  border: 2px solid #e8e8e8;
  background: #fff;
  transition: all 0.3s ease;
}

.contact-page .right-content form input:focus,
.contact-page .right-content form textarea:focus,
.contact-page .right-content form select:focus {
  border-color: var(--solar-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

.contact-page .right-content form button {
  background: var(--gradient-solar);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-page .right-content form button:hover {
  background: var(--gradient-eco);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* 
---------------------------------------------
Blog Cards
--------------------------------------------- 
*/
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.blog-card .card-image {
  height: 220px;
  overflow: hidden;
}

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

.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.blog-card .card-content {
  padding: 25px;
}

.blog-card .card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.blog-card .card-meta span {
  font-size: 12px;
  color: var(--text-light);
}

.blog-card .card-meta span i {
  color: var(--solar-primary);
  margin-right: 5px;
}

.blog-card .card-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--trust-navy);
  transition: all 0.3s ease;
}

.blog-card:hover .card-content h4 {
  color: var(--solar-primary);
}

.blog-card .card-content p {
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-card .read-more {
  color: var(--solar-primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* 
---------------------------------------------
Career Page
--------------------------------------------- 
*/
.job-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.job-card:hover {
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--solar-primary);
}

.job-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--trust-navy);
}

.job-card .job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.job-card .job-meta span {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-card .job-meta span i {
  color: var(--solar-primary);
}

.job-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.job-card .apply-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--gradient-solar);
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.job-card .apply-btn:hover {
  background: var(--gradient-eco);
}

/* 
---------------------------------------------
Partner / Referral Program
--------------------------------------------- 
*/
.program-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.benefit-card .icon {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover .icon {
  background: var(--gradient-solar);
}

.benefit-card .icon i {
  font-size: 32px;
  color: var(--solar-primary);
  transition: all 0.3s ease;
}

.benefit-card:hover .icon i {
  color: #fff;
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--trust-navy);
}

.benefit-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* 
---------------------------------------------
Counter / Stats Section
--------------------------------------------- 
*/
.stats-section {
  background: var(--gradient-solar);
  padding: 80px 0;
  border-radius: 40px;
  margin: 80px 0;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-item .number {
  font-size: 48px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* 
---------------------------------------------
Utility Classes
--------------------------------------------- 
*/
.bg-light-warm {
  background: var(--light-bg);
}

.text-solar {
  color: var(--solar-primary);
}

.text-eco {
  color: var(--eco-green);
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* 
---------------------------------------------
Animations
--------------------------------------------- 
*/
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* 
---------------------------------------------
Responsive Adjustments
--------------------------------------------- 
*/
@media (max-width: 992px) {
  .main-banner {
    padding: 160px 0px 80px 0px;
  }
  
  .main-banner .caption h2 {
    font-size: 36px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .lead-form-container {
    margin-top: 50px;
  }
  
  .pm-surya-section,
  .testimonials-section {
    border-radius: 40px;
    padding: 60px 0;
  }
  
  .solution-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .main-banner {
    padding: 140px 0px 60px 0px;
    border-radius: 0 0 40px 40px;
  }
  
  .main-banner .caption h2 {
    font-size: 28px;
  }
  
  .main-banner .caption h6 {
    font-size: 13px;
  }
  
  .lead-form-container {
    padding: 30px;
  }
  
  .features {
    margin-top: -40px;
  }
  
  .section-heading h2 {
    font-size: 28px;
  }
  
  .page-heading {
    padding: 140px 0px 60px 0px;
    border-radius: 0 0 40px 40px;
  }
  
  .page-heading h3 {
    font-size: 28px;
  }
  
  footer {
    border-radius: 40px 40px 0 0;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    margin-top: 30px;
    text-align: center;
  }
  
  /* Mobile dropdown */
  .nav li.has-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f8f8f8;
    border-radius: 10px;
    margin-top: 5px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  
  .nav li.has-dropdown.active .dropdown-menu {
    display: block;
  }
}

/* 
---------------------------------------------
Trending Section Override (for offerings page)
--------------------------------------------- 
*/
.trending .item {
  background: #fff;
}

.trending .item span.price {
  background: var(--gradient-solar);
}

.trending .item .down-content a {
  background: var(--solar-primary);
}

.trending .item:hover .down-content h4 {
  color: var(--solar-primary);
}

.trending .item:hover .down-content a {
  background: var(--eco-green);
}

.trending ul.trending-filter li a.is_active {
  background: var(--gradient-solar);
}

.trending ul.trending-filter li a:hover {
  color: var(--solar-primary);
}

/* 
---------------------------------------------
Most Played Override (reused for solutions)
--------------------------------------------- 
*/
.most-played {
  background: var(--light-bg);
}

.most-played .item .down-content a {
  background: var(--gradient-solar);
}

.most-played .item:hover .down-content h4 {
  color: var(--solar-primary);
}

.most-played .item:hover .down-content a {
  background: var(--gradient-eco);
}

/* 
---------------------------------------------
Categories Override
--------------------------------------------- 
*/
.categories .item {
  background: var(--gradient-solar);
}

/* 
---------------------------------------------
Single Product Override (for solution details)
--------------------------------------------- 
*/
.single-product span.price {
  color: var(--solar-primary);
}

.single-product form button {
  background: var(--gradient-solar);
}

.single-product form button:hover {
  background: var(--gradient-eco);
}

.single-product ul li {
  color: var(--solar-primary);
}

.tabs-content .nav-tabs .nav-link.active {
  color: var(--solar-primary);
}

