/* Virtual Conference Production Service Template - Main CSS */
/* Bootstrap 5 Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Custom Color Palette */
:root {
  /* Primary Colors */
  --primary-purple: #6C63FF;
  --primary-teal: #17A2B8;
  --primary-coral: #FF6B6B;
  --primary-mint: #4ECDC4;
  --primary-lavender: #A8A2F0;
  
  /* Light Shades */
  --light-purple: #E8E6FF;
  --light-teal: #B8E6EA;
  --light-coral: #FFE3E3;
  --light-mint: #E0F7F6;
  --light-lavender: #F0EFFF;
  
  /* Dark Shades */
  --dark-purple: #4A47A3;
  --dark-teal: #0F6B7A;
  --dark-coral: #CC5555;
  --dark-mint: #3EA39C;
  --dark-lavender: #8480C7;
  
  /* Neutrals */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
  --gradient-2: linear-gradient(135deg, var(--primary-coral), var(--primary-mint));
  --gradient-3: linear-gradient(135deg, var(--primary-lavender), var(--primary-purple));
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  padding-top: 80px; /* Account for fixed header */
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
  color: var(--gray);
}

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header Styles */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-purple) !important;
}

.navbar-nav .nav-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--dark-gray) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: var(--font-size-4xl);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero p {
  font-size: var(--font-size-lg);
  color: var(--light-gray);
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: var(--font-size-3xl);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--gray);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--font-size-base);
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--white);
}

.service-item {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-item:hover::before {
  opacity: 0.1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-item * {
  position: relative;
  z-index: 2;
}

.service-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Features Section */
.features {
  background: var(--gradient-3);
  color: var(--white);
}

.features .section-title,
.features .section-subtitle,
.features .section-desc {
  color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--light-gray);
}

.priceplan-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.priceplan-item:hover {
  transform: translateY(-5px);
}

.priceplan-item.featured {
  background: var(--gradient-1);
  color: var(--white);
  transform: scale(1.05);
}

.priceplan-price {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-teal);
}

.team-member-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.team-member-role {
  font-size: var(--font-size-base);
  color: var(--primary-teal);
}

/* Reviews Section */
.reviews {
  background: var(--light-mint);
}

.review-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
}

.review-author {
  font-weight: 600;
  color: var(--primary-purple);
}

/* Testimonials Slider Dots */
.slider-dots {
  text-align: center;
  margin-top: 2rem;
}

.slider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-purple);
}

.slider-dot:hover {
  background-color: var(--primary-teal);
}

/* Case Studies Section */
.casestudy {
  background: var(--white);
}

.casestudy-item {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process {
  background: var(--light-lavender);
}

.process-item {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-purple);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process {
  counter-reset: step-counter;
}

/* Timeline Section */
.timeline {
  background: var(--white);
}

.timeline-item {
  border-left: 3px solid var(--primary-teal);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-teal);
}

/* Career Section */
.career {
  background: var(--light-coral);
}

.career-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Core Info Section */
.coreinfo {
  background: var(--gradient-2);
  color: var(--white);
}

.coreinfo .section-title,
.coreinfo .section-subtitle,
.coreinfo .section-desc {
  color: var(--white);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

/* Contact Section */
.contact {
  background: var(--light-gray);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

/* Blog Section */
.blog, #Blog {
  background: var(--white);
}

.blog-item {
  background: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 2rem;
}

.blog-item-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.blog-item-excerpt {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-item-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-item-link:hover {
  color: var(--dark-purple);
}

/* FAQ Section */
.faq {
  background: var(--light-gray);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-purple);
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-purple);
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--white);
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  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(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 1rem;
  text-align: center;
}

/* Touch Device Styles */
.touch-device .service-item.touch-active,
.touch-device .about-feature.touch-active,
.touch-device .blog-item.touch-active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-purple);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 1001;
}

.skip-link:focus {
  top: 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-primary { background-color: var(--primary-purple); }
.bg-secondary { background-color: var(--primary-teal); }
.bg-gradient { background: var(--gradient-1); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }



/* Space Page Styles */
#space {
  min-height: 70vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-3xl);
  color: var(--white);
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumbs img {
  max-height: 30px;
  width: auto;
}

/* Additional Page Styles */
.add-page-section {
  padding: var(--section-padding);
}

.add-page-section:nth-child(even) {
  background: var(--light-gray);
}

.add-page-section:nth-child(odd) {
  background: var(--white);
}

.add-page-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.add-page-section:nth-child(even) .add-page-item {
  background: var(--light-gray);
}

.add-page-section:nth-child(odd) .add-page-item {
  background: var(--white);
}

/* Modernizr Fallbacks */
.no-flexbox .row {
  display: block;
}

.no-flexbox .col-lg-3,
.no-flexbox .col-lg-4,
.no-flexbox .col-lg-6,
.no-flexbox .col-md-6 {
  float: left;
  width: 50%;
}

.no-flexbox .col-lg-12 {
  width: 100%;
}

.no-animations * {
  animation: none !important;
  transition: none !important;
}

/* Form Validation Error Styles */
.form-control.is-invalid {
  border-color: var(--primary-coral);
}

.invalid-feedback {
  color: var(--primary-coral);
  font-size: var(--font-size-sm);
  margin-top: 0.25rem;
}

/* Nanobar Progress Bar Styles */
.nanobar {
  background: var(--gradient-1);
  height: 3px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nanobar .bar {
  background: var(--primary-purple);
  height: 100%;
  transition: all 0.3s ease;
}

/* Image Dimension Specifications for Future Image Replacement */
.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.breadcrumb-image {
  max-height: 30px;
  width: auto;
} 


/* 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);
}

.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;
    }
}
