/* Solar Panel Template - Main CSS */
/* Bootstrap 5 is included via CDN in HTML */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  --primary-blue: #214be2;
  --primary-blue-light: #71afff;
  --primary-blue-dark: #2e41ee;
  
  --primary-green: #0d9a48;
  --primary-green-light: #44e98b;
  --primary-green-dark: #0f8a4d;
  
  --primary-orange: #d23908;
  --primary-orange-light: #ff8b45;
  --primary-orange-dark: #b5280c;
  
  --primary-teal: #018163;
  --primary-teal-light: #7efde1;
  --primary-teal-dark: #0a8e88;
  
  --primary-purple: #5931d4;
  --primary-purple-light: #9282e5;
  --primary-purple-dark: #682cf2;
  
  --white: #ffffff;
  --light-gray: #f8fafc;
  --gray: #4a6172;
  --dark-gray: #2d3f4e;
  --black: #132033;
}

/* Conservative font sizes */
html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.36rem !important;
  font-weight: 700;
  color: var(--primary-blue-dark) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-teal));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../KAG_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.57rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.38rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 1.66rem;
}

.hero-desc {
  font-size: 1.21rem;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-orange-light), var(--primary-purple-light));
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-21px); }
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.27rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 19px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 2.53rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.67rem;
}

.service-price {
  font-size: 1.63rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-purple-light));
  color: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--white);
}

/* Reviews Section */
.reviews-section {
  background: var(--light-gray);
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue-dark);
  margin-bottom: 0.58rem;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-card {
  background: var(--white);
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
  color: var(--white);
  margin: 0;
  font-weight: 600;
  border-radius: 15px 15px 0 0;
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  color: var(--gray);
  display: block;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background: var(--light-gray);
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border: 2px solid var(--light-gray);
  border-radius: 13px;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(20, 57, 235, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-teal-dark));
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue-light);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--light-gray);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.61rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--light-gray);
}

.timeline-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

/* Case Study Section */
.casestudy-section {
  background: var(--white);
}

.casestudy-card {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--primary-green-light), var(--primary-teal-light));
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--white);
}

.priceplan-card {
  background: linear-gradient(135deg, var(--white), var(--light-gray));
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.priceplan-card:hover {
  transform: translateY(-13px);
}

.priceplan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--light-gray);
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

/* Career Section */
.career-section {
  background: var(--white);
}

.career-item {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

/* Case Study Section */
.casestudy-section {
  background: var(--white);
}

.casestudy-card {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background: var(--light-gray);
}

.process-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.63rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--white);
}

.timeline-item {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

/* Career Section */
.career-section {
  background: var(--light-gray);
}

.career-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-item span {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.04rem;
  margin-top: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.coreinfo-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-radius-lg {
  border-radius: 15px;
}

.border-radius-xl {
  border-radius: 20px;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
