/* ==========================================================================
   Digital Presentation Template Hub - Main Styles
   Bootstrap 5 Integration + Custom Styles
   ========================================================================== */

/* Color Palette - 5 Primary Colors + Variations */
:root {
  /* Primary Colors */
  --color-primary: #6c63ff;
  --color-secondary: #64b5f6;
  --color-accent: #81c784;
  --color-neutral: #f5f5f5;
  --color-dark: #2c2c54;
  
  /* Light Variations */
  --color-primary-light: #8a82ff;
  --color-secondary-light: #90caf9;
  --color-accent-light: #a5d6a7;
  --color-neutral-light: #fafafa;
  --color-dark-light: #40407a;
  
  /* Dark Variations */
  --color-primary-dark: #4834d4;
  --color-secondary-dark: #1976d2;
  --color-accent-dark: #4caf50;
  --color-neutral-dark: #e0e0e0;
  --color-dark-darker: #1a1a2e;
  
  /* Typography */
  --font-family-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-large: 1.125rem;
  --font-size-xl: 1.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: #fff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--color-dark-light);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header */
#header {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#sitename {
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-dark);
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-neutral-light) 0%, var(--color-secondary-light) 100%);
  padding-top: 80px;
}

.hero-content {
  z-index: 2;
    padding-top: 250px;
}

.hero-image {
  position: relative;
}

.hero-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--color-accent-light);
  border-radius: 50%;
  opacity: 0.1;
  top: -50px;
  right: -50px;
  z-index: 1;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--color-primary);
  font-size: var(--font-size-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* About Section */
#about {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 1.5rem;
}

/* Services Section */
#services {
  background-color: var(--color-neutral);
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background-color: #fff;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  background: var(--color-neutral-light);
  margin-bottom: 2rem;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--color-neutral);
}

.price-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
}

.price-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--color-primary);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  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(--color-neutral-dark);
}

/* Team Section */
#team {
  background-color: #fff;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: var(--color-neutral-light);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--color-primary);
}

/* Reviews Section */
#reviews {
  background-color: var(--color-neutral);
}

.review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark-light);
}

.review-author {
  font-weight: 600;
  color: var(--color-primary);
}

/* Case Studies Section */
#casestudy {
  background-color: #fff;
}

.case-card {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

/* Process Section */
#process {
  background-color: var(--color-neutral);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background-color: #fff;
}

.timeline-item {
  padding: 2rem;
  background: var(--color-neutral-light);
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-primary);
}

/* Career Section */
#career {
  background-color: var(--color-neutral);
}

.career-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Core Info Section */
#coreinfo {
  background-color: #fff;
}

.info-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--color-neutral-light);
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* Contact Section */
#contacts {
  background-color: var(--color-neutral);
}

.contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--color-neutral-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.btn-primary {
  background: var(--color-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

/* Blog Section */
#blog {
  background-color: #fff;
}

.blog-card {
  background: var(--color-neutral-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: var(--color-neutral);
}

.faq-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--color-dark-light);
}

/* Gallery Section */
#gallery {
  background-color: #fff;
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--color-dark);
  color: #fff;
  padding: 3rem 0 2rem;
}

.footer-content {
  border-bottom: 1px solid var(--color-dark-light);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--color-secondary-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--color-secondary-light);
}

#site-copyright {
  text-align: center;
  color: #999;
  font-size: var(--font-size-small);
  margin: 0;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--color-neutral);
  padding: 2rem 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

/* Utilities */
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-accent { color: var(--color-accent) !important; }

.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-accent { background-color: var(--color-accent) !important; }

.border-primary { border-color: var(--color-primary) !important; }
.border-secondary { border-color: var(--color-secondary) !important; }
.border-accent { border-color: var(--color-accent) !important; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus indicators */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
