/* AI-Driven Syllabus Generator Template - Main Styles */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-blue: #6C8EBF;
  --primary-green: #82C09A;
  --primary-purple: #9B7EBF;
  --primary-orange: #E8A87C;
  --primary-pink: #D8A8C8;
  
  --light-blue: #E8F2FF;
  --light-green: #F0F8F4;
  --light-purple: #F3F0F8;
  --light-orange: #FFF5F0;
  --light-pink: #F8F3F6;
  
  --dark-blue: #4A6B8C;
  --dark-green: #5A8C6F;
  --dark-purple: #6F5A8C;
  --dark-orange: #C48A5A;
  --dark-pink: #B58A9F;
  
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --white: #ffffff;
  --light-gray: #F8F9FA;
}

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

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
}

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

.section-padding-sm {
  padding: 60px 0;
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-purple);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Service Cards */
.service-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

/* Feature Cards */
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #E9ECEF;
  height: 100%;
}

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

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E9ECEF;
  text-align: center;
  height: 100%;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--light-gray);
}

.team-info {
  padding: 1.5rem;
}

/* Process Timeline */
.process-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #E9ECEF;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-blue);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #E9ECEF;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #DEE2E6;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

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

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

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

/* Gallery */
.gallery-item {
  background: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 1.5rem;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.footer p, .footer a {
  color: #ADB5BD;
}

.footer a:hover {
  color: var(--white);
  text-decoration: none;
}

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

/* Section Backgrounds */
.bg-light-alt {
  background-color: var(--light-gray);
}

.bg-primary-light {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
}

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

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

/* Career Cards */
.career-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

/* Case Study Cards */
.casestudy-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

/* Timeline Cards */
.timeline-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

/* Core Info Cards */
.coreinfo-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.blog-img {
  width: 100%;
  height: 200px;
  background: var(--light-gray);
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Price Plan Cards */
.priceplan-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

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

/* Reviews Cards */
.review-card {
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  text-align: center;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1rem;
}

/* Breadcrumb */
.breadcrumb-custom {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
} 

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


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

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

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

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
