/* AI Market Sentiment Analysis Tool - Main Styles */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-color: #4e92ff; /* Blue */
  --secondary-color: #0bc28f; /* Green */
  --accent-color: #ffb10c; /* Amber */
  --warning-color: #e8576b; /* Red */
  --info-color: #9a78ff; /* Purple */
  
  --primary-light: #dae9ff;
  --secondary-light: #dffff2;
  --accent-light: #fff8ce;
  --warning-light: #f6cdd0;
  --info-light: #f2eeff;
  
  --primary-dark: #1632ba;
  --secondary-dark: #009c5f;
  --accent-dark: #ce670a;
  --warning-dark: #ee2121;
  --info-dark: #883dd6;
  
  --text-dark: #31394f;
  --text-light: #676e86;
  --bg-light: #F9FAFB;
  --border-color: #ffffff;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.2rem !important;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decoration-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-decoration-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: var(--info-color);
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

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

/* Service Cards */
.service-card {
  height: 100%;
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.price-tag {
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}

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

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

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

/* Review Cards */
.review-card {
  padding: 2rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
}

.review-stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--info-color);
}

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

.faq-answer {
  color: var(--text-light);
}

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(47, 121, 232, 0.10);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

.footer a {
  color: #9b9c9e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

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

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

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

/* Blog Cards */
.blog-card {
  height: 100%;
  overflow: hidden;
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

/* Breadcrumb */
.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Animations - Respecting prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition: all 0.5s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sal-animate {
    animation: none !important;
    transition: none !important;
  }
}

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

.text-secondary-custom {
  color: var(--secondary-color);
}

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

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

/* Section Backgrounds */
.about-section {
  background: white;
}

.services-section {
  background: var(--bg-light);
}

.features-section {
  background: white;
}

.priceplan-section {
  background: var(--primary-light);
}

.team-section {
  background: white;
}

.reviews-section {
  background: var(--bg-light);
}

.casestudy-section {
  background: white;
}

.process-section {
  background: var(--secondary-light);
}

.timeline-section {
  background: white;
}

.career-section {
  background: var(--bg-light);
}

.coreinfo-section {
  background: white;
}

.contact-section {
  background: var(--bg-light);
}

.blog-section {
  background: white;
}

.faq-section {
  background: var(--info-light);
} 

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


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
