:root {
  /* Primary Solar Cold Storage Color Palette */
  --primary-blue: #5585e7;
  --solar-orange: #ff9b39;
  --cold-cyan: #0b99a6;
  --earth-green: #1faa55;
  --storage-gray: #53626c;
  
  /* Light Shades */
  --light-blue: #d1eafc;
  --light-orange: #eae5d3;
  --light-cyan: #e8eff0;
  --light-green: #cce7c7;
  --light-gray: #F8F9FA;
  
  /* Dark Shades */
  --dark-blue: #1f5a9a;
  --dark-orange: #da6e00;
  --dark-cyan: #0e9ea1;
  --dark-green: #227031;
  --dark-gray: #323842;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

/* Bootstrap Integration - No Overrides */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--dark-blue);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--dark-blue);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  color: var(--dark-blue);
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--dark-cyan);
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  color: var(--dark-cyan);
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  color: var(--storage-gray);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header Styling */
.navbar {
  background-color: var(--light-blue);
  border-bottom: 2px solid var(--primary-blue);
}

.navbar-nav .nav-link {
  color: var(--dark-blue);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--solar-orange);
}

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

.hero-text {
  color: var(--dark-blue);
    padding-top: 250px;
}

.hero-image {
  position: relative;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--solar-orange);
  top: -50px;
  right: -50px;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--earth-green);
  bottom: -30px;
  left: -30px;
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--light-gray);
}

/* Services Cards */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card .card-header {
  background-color: var(--primary-blue);
  color: white;
  border-radius: 15px 15px 0 0;
  text-align: center;
  font-weight: 600;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--solar-orange);
}

/* Features Section */
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--cold-cyan);
}

/* Team Member Cards */
.team-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card img {
  height: 250px;
  object-fit: cover;
}

/* Reviews Section */
.review-card {
  border: none;
  border-radius: 15px;
  background-color: var(--light-green);
  padding: 2rem;
  height: 100%;
}

.review-stars {
  color: var(--solar-orange);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 50px;
  height: 50px;
  background-color: var(--solar-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: var(--font-size-lg);
}

/* Contact Form */
.contact-form {
  background-color: var(--light-blue);
  padding: 3rem;
  border-radius: 15px;
}

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

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(83, 140, 219, 0.25);
}

.btn-primary {
  background-color: var(--solar-orange);
  border-color: var(--solar-orange);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

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

.footer h5 {
  color: var(--solar-orange);
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--solar-orange);
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

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

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background-color: var(--light-cyan);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-cyan);
}

.faq-answer {
  padding: 1.5rem;
  background-color: white;
  margin: 0;
  border-top: 1px solid var(--light-gray);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  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);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--earth-green);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--earth-green);
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Career Cards */
.career-card {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-blue);
}

.career-role {
  color: var(--solar-orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
}

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

/* Utility Classes */
.text-solar {
  color: var(--solar-orange);
}

.text-cold {
  color: var(--cold-cyan);
}

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

.bg-solar {
  background-color: var(--solar-orange);
}

.bg-cold {
  background-color: var(--cold-cyan);
}

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


/* 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;
    }
}
