/* AI Logo Design Template - Main CSS */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-color: #6c63ff;
  --primary-light: #8b83ff;
  --primary-dark: #4834d4;
  --secondary-color: #ff6b6b;
  --secondary-light: #ff8e8e;
  --secondary-dark: #e55555;
  --accent-color: #4ecdc4;
  --accent-light: #72e6dd;
  --accent-dark: #2bb3a8;
  --neutral-color: #95a5a6;
  --neutral-light: #bdc3c7;
  --neutral-dark: #7f8c8d;
  --success-color: #2ecc71;
  --success-light: #58d68d;
  --success-dark: #27ae60;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #2c3e50;
  --text-primary: #2c3e50;
  --text-secondary: #7f8c8d;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Header Styles */
#header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8ecf4 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
  transform: rotate(-15deg);
}

#hero .hero-content {
  z-index: 2;
  position: relative;
    padding-top: 175px;
}

/* About Section */
#about {
  padding: 80px 0;
  background-color: var(--white);
}

.feature-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.service-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

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

/* Features Section */
#features {
  padding: 80px 0;
  background-color: var(--white);
}

/* Price Plan Section */
#priceplan {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.price-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

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

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-light);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  padding: 80px 0;
  background-color: var(--white);
}

.team-card {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Reviews Section */
#reviews {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.review-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
}

/* Case Studies Section */
#casestudy {
  padding: 80px 0;
  background-color: var(--white);
}

.case-card {
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Process Section */
#process {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Timeline Section */
#timeline {
  padding: 80px 0;
  background-color: var(--white);
}

.timeline-item {
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  background-color: var(--light-gray);
  border-radius: 0 12px 12px 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Career Section */
#career {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.career-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
#coreinfo {
  padding: 80px 0;
  background-color: var(--white);
}

.coreinfo-card {
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

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

/* Contact Section */
#contact {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contact-form {
  background-color: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

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

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

/* Blog Section */
#blog {
  padding: 80px 0;
  background-color: var(--white);
}

.blog-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer Styles */
#footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

#footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

#footer p,
#footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--white);
}

.footer-divider {
  border-color: var(--neutral-color);
  margin: 2rem 0;
}

/* Section Spacing */
section {
  position: relative;
  overflow: hidden;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

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

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

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

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

.rounded-custom {
  border-radius: 16px !important;
}

.shadow-custom {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08) !important;
}



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