/* ===== ONLINE TUTORING PLATFORM - MAIN STYLES ===== */

/* Custom Properties - Color Palette (5 primary + shades) */
:root {
  --primary-blue: #5488d3;
  --primary-green: #5bd00c;
  --primary-purple: #9414fe;
  --primary-orange: #e0b635;
  --primary-pink: #ff5e9c;
  
  /* Light shades */
  --light-blue: #cddde4;
  --light-green: #dbebd2;
  --light-purple: #fdfaff;
  --light-orange: #fff7e9;
  --light-pink: #f9dee7;
  
  /* Dark shades */
  --dark-blue: #2d477d;
  --dark-green: #498016;
  --dark-purple: #7e0abc;
  --dark-orange: #cb9202;
  --dark-pink: #c7496d;
  
  /* Neutrals */
  --text-dark: #2b3944;
  --text-light: #7a8a94;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  --border-light: #f3f7ff;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
}

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

.hero-decorative:nth-child(2) {
  background: var(--primary-orange);
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

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

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

/* About Section */
.about-feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(85, 151, 247, 0.10);
}

.about-feature-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--bg-light);
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-green);
}

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

/* Features Section */
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

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

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

/* Price Plan Section */
.priceplan-section {
  background: var(--bg-light);
}

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(161, 18, 251, 0.15);
}

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

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-purple);
  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(--border-light);
}

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

/* Team Section */
.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

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

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

.team-role {
  color: var(--primary-orange);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-light);
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  text-align: center;
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-pink);
}

/* Case Study Section */
.casestudy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

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

/* Process Section */
.process-section {
  background: var(--bg-light);
}

.process-step {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
}

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

/* Timeline Section */
.timeline-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary-green);
  margin-bottom: 2rem;
}

/* Career Section */
.career-section {
  background: var(--bg-light);
}

.career-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

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

.career-role {
  color: var(--primary-orange);
  font-weight: 600;
}

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

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.contact-info {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

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

.contact-info-icon i {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
}

.faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

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

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

/* Gallery Section */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  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: #afc5d5;
}

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

/* Buttons */
.btn-primary {
  background: var(--primary-blue);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Form Elements */
.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

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

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

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

/* Utility Classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-pink { color: var(--primary-pink); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-pink { background-color: var(--light-pink); } 

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


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

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

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

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