/* ========================================
   Wind Turbine Kits Template - Main CSS
   Template 186 - Portable Wind Turbine Kits
   Bootstrap 5 Compatible Styles
   ======================================== */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-green: #4A9B8E;
  --primary-blue: #6B9BD1;
  --primary-yellow: #F4D03F;
  --primary-orange: #E67E22;
  --primary-purple: #8E44AD;
  
  /* Light/Dark Shades */
  --light-green: #A8E6CF;
  --dark-green: #2E7D32;
  --light-blue: #AED6F1;
  --dark-blue: #1565C0;
  --light-yellow: #FEF5B7;
  --dark-yellow: #F39C12;
  
  /* Neutral Colors */
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Header Styles */
#header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
    padding-top: 125px;
}

.hero-image {
  z-index: 1;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-blue);
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-yellow);
  bottom: 20%;
  left: 10%;
}

/* About Section */
#about {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
}

/* Services Section */
#services {
  padding: 5rem 0;
  background-color: var(--white);
}

.service-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: none;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Features Section */
#features {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.features-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.features-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 2rem;
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background-color: var(--white);
}

.price-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.price-card.featured {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-card.featured .price-value {
  color: var(--white);
}

/* Team Section */
#team {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 3rem;
}

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background-color: var(--white);
}

.review-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-yellow);
}

/* Case Studies Section */
#casestudy {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.case-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
  padding: 5rem 0;
  background-color: var(--white);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.timeline-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-purple);
}

/* Career Section */
#career {
  padding: 5rem 0;
  background-color: var(--white);
}

.career-item {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Core Info Section */
#coreinfo {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.coreinfo-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Contact Section */
#contacts {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-form {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2.5rem;
}

.form-control {
  border: 2px solid #E9ECEF;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 155, 142, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-image {
  height: 200px;
  background-color: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 3rem;
}

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background-color: var(--white);
}

.faq-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-light);
  margin: 0;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 3rem;
}

/* Footer */
#footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.footer-link {
  color: #BDC3C7;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--primary-green);
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495E;
  color: #95A5A6;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

/* Utility Classes */
.text-primary-green {
  color: var(--primary-green);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.border-primary-green {
  border-color: var(--primary-green);
}

/* Mobile Specific - No Scroll Animations */
@media (max-width: 768px) {
  .sal-animate {
    animation: none !important;
  }
  
  .sr-animate {
    animation: none !important;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
