/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.sticky {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

.navbar.sticky .nav-container {
  width: calc(100% - 40px);
  max-width: 720px;
  height: 72px;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
}

/* Logo swap behavior */
.logo-horizontal {
  display: inline-block;
}
.logo-icon {
  display: none;
}

.navbar.sticky .logo-horizontal {
  display: none;
}
.navbar.sticky .logo-icon {
  display: inline-block;
}

.navbar.sticky .logo {
  height: 50px;
  filter: none;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar.sticky .nav-menu {
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.navbar.sticky .nav-link {
  text-shadow: none;
  font-size: 0.9rem;
  padding: 6px 0;
}

.nav-link:hover {
  color: #2c5530;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #2c5530, #4caf50);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  color: #2c5530;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-shadow: none;
}

.navbar.sticky .nav-cta .btn {
  background: linear-gradient(45deg, #2c5530, #4caf50);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(44, 85, 48, 0.2);
  padding: 8px 18px;
  font-size: 0.85rem;
}

.nav-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bar {
  width: 25px;
  height: 2px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-background {
  background-image: url("https://framerusercontent.com/images/LNCEvrkse1F4jzJxnWebf4l4n6g.png");
  /* background-image: url("/assets/hero_image.png"); */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(44, 85, 48, 0.8) 0%,
    rgba(76, 175, 80, 0.6) 100%
  );
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  margin-top: -80px;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.highlight {
  background: linear-gradient(45deg, #e5525c, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease 0.9s forwards;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease 0.5s forwards;
}

.hero-gif {
  width: 100%;
  max-width: 1000px;
  border-radius: 30px;
  z-index: 2;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #e5525c, #ffed4e);
  color: #2c5530;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-secondary:hover {
  background: white;
  color: #2c5530;
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-visual .hero-image {
  display: none;
}

.solar-panel-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.solar-panel {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a1a1a, #333);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.solar-panel::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(45deg, #2c5530, #4caf50);
  border-radius: 5px;
  opacity: 0.8;
}

.energy-flow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 40px;
  background: linear-gradient(to top, #ffd700, transparent);
  animation: energyPulse 2s ease-in-out infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* Trust Banner */
.trust-banner {
  background: linear-gradient(to right, #ffffff, #f9fdf9, #ffffff);
  padding: 50px 0;
  border-top: 4px solid #4caf50;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  margin-top: -200px;
  border-radius: 30px 30px 0 0;
}

.trust-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(44, 85, 48, 0.1);
}

.trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  margin-right: 5px;
}

/* Govt Authorised - Blue/Security Theme */
.trust-item:nth-child(1) .trust-icon {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  animation: pulse-blue 2s infinite, tilt 4s ease-in-out infinite;
}

/* Subsidy - Gold/Reward Theme */
.trust-item:nth-child(2) .trust-icon {
  background: linear-gradient(135deg, #f2994a, #f2c94c);
  animation: pulse-gold 2s infinite, tilt 4s ease-in-out infinite;
}

/* Bank Loan - Green/Finance Theme */
.trust-item:nth-child(3) .trust-icon {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  animation: pulse-green 2s infinite, tilt 4s ease-in-out infinite;
}

/* Support - Purple/Care Theme */
.trust-item:nth-child(4) .trust-icon {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  animation: pulse-purple 2s infinite, tilt 4s ease-in-out infinite;
}

@keyframes tilt {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(30, 60, 114, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(30, 60, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 60, 114, 0); }
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(242, 153, 74, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(242, 153, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 153, 74, 0); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(17, 153, 142, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(17, 153, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 153, 142, 0); }
}

@keyframes pulse-purple {
  0% { box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(106, 17, 203, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 17, 203, 0); }
}

.trust-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.trust-text p {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(229, 82, 92, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(229, 82, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 82, 92, 0); }
}

@media (max-width: 992px) {
  .trust-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-banner {
    padding: 30px 15px;
    margin-top: -20px;
  }
  .trust-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c5530;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f9fdf9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.service-card.animate {
  animation: slideUp 0.8s ease forwards;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #2c5530, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c5530;
}

.service-description {
  color: #666;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.feature-card {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.feature-card.animate {
  animation: scaleIn 0.8s ease forwards;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  color: #2c5530;
  margin-bottom: 10px;
}

.feature-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.features-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(50px);
}

.feature-detail.animate {
  animation: slideInRight 0.8s ease forwards;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #2c5530, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c5530;
}

.feature-content p {
  color: #666;
  line-height: 1.6;
}

.contact-item a {
  display: block;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #2c5530;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f9fdf9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c5530;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder {
  font-size: 4rem;
  color: white;
  opacity: 0.8;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.portfolio-item.animate {
  animation: slideUp 0.8s ease forwards;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(135deg, #2c5530, #4caf50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-image .image-placeholder {
  font-size: 3rem;
  color: white;
  opacity: 0.8;
}

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

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-content {
  padding: 30px;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c5530;
}

.portfolio-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.portfolio-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.portfolio-stats .stat {
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #2c5530;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f9fdf9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.testimonial-card.animate {
  animation: slideUp 0.8s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  font-style: italic;
}

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

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c5530;
  margin-bottom: 5px;
}

.author-info span {
  color: #999;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #666;
}

.contact-item i {
  width: 20px;
  color: #2c5530;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5530;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: #2c5530;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo {
  height: 40px;
  width: auto;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  color: inherit;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact i {
  width: 20px;
  color: #4caf50;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes energyPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 30px;
  }

  .nav-menu {
    gap: 30px;
  }
}

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

  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
  }

  .navbar.sticky {
    position: fixed;
    top: 15px;
  }

  .navbar.sticky .nav-container {
    width: calc(100% - 30px);
    margin: 0 auto;
    height: 60px;
    padding: 0 15px;
    border-radius: 30px;
  }

  .nav-container {
    padding: 0 20px;
    height: 60px;
    width: 100%;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 120px 0 40px; /* Space for announcement + nav */
    gap: 20px;
    z-index: 1500; /* Between header components if needed, or over backdrop */
    overflow-y: auto;
    visibility: hidden;
  }

  .nav-menu.active {
    left: 0;
    visibility: visible;
  }

  .hamburger {
    z-index: 2200;
    margin-left: auto; /* Push to right just in case */
  }

  .nav-cta {
    display: none;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 15px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-image {
    display: none;
  }

  .hero {
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
  }

  .logo {
    height: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .nav-container {
    padding: 0 15px;
  }

  .nav-menu {
    width: 100%;
    left: -100%;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Scrollable Service Section */

.feature-inner {
  display: flex;
  align-items: flex-start;
}

/* Tabs (left) */
.feature-tabs {
  width: 160px;
  position: sticky;
  top: 80px; /* adjust for header height */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-tabs .tab {
  padding: 8px 12px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}
.feature-tabs .tab:hover {
  background: #f3f3f3;
}
.feature-tabs .tab.active {
  background: #00a86b;
  color: #fff;
}

/* Right pane */
.feature-content {
  flex: 1;
  margin-left: 40px;
}

.pane {
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .feature-inner {
    display: block;
  }

  .feature-tabs {
    display: none;
  }

  .feature-content {
    margin-left: 0;
    width: 100%;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .service-icon {
    margin: 20px auto 0;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-float i {
  margin-top: 0;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Responsive Adjustments for WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
