:root {
  /* Renewable Energy Color Palette - Pastel High-Contrast */
  --primary-green: #369948;
  --primary-blue: #147af2;
  --primary-yellow: #fdd61b;
  --primary-orange: #ee9200;
  --primary-teal: #0c8387;
  
  /* Light/Dark Shades */
  --light-green: #d5ecd8;
  --dark-green: #268a39;
  --light-blue: #cce5fe;
  --dark-blue: #026dbe;
  --light-yellow: #fffcd3;
  --dark-yellow: #f55f00;
  --light-orange: #fff1d8;
  --dark-orange: #d86200;
  --light-teal: #dde3e3;
  --dark-teal: #007071;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #272727;
  overflow-x: hidden;
}

/* Conservative Typography Sizes */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
}

h1 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #5d5959;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative {
  position: absolute;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

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

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* About Features Grid */
.about-feature {
  background: var(--light-green);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 2rem;
}

.service-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(76, 169, 88, 0.20);
}

.service-price {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  background: var(--light-blue);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border-top: 4px solid var(--primary-blue);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  border: 2px solid var(--light-teal);
  margin-bottom: 2rem;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Team Member Cards */
.team-member {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--light-yellow);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-yellow);
}

/* Case Studies */
.case-study-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-top: 4px solid var(--primary-orange);
}

/* Process Steps */
.process-step {
  background: var(--light-teal);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-teal);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
}

/* Timeline */
.timeline-item {
  background: var(--light-orange);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-orange);
  position: relative;
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border: 2px solid var(--light-blue);
}

/* Core Info Items */
.coreinfo-item {
  background: var(--light-green);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-green);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(81, 155, 87, 0.25);
}

.btn-primary {
  background: var(--primary-green);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-blue);
}

.faq-question {
  font-weight: var(--font-weight-medium);
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #787878;
  margin: 0;
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Animation Integration */
.sal-animate {
  transition: all 0.5s ease;
}

/* Utility Classes */
.text-green {
  color: var(--primary-green);
}

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

.bg-light-green {
  background-color: var(--light-green);
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.border-green {
  border-color: var(--primary-green);
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} 

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
