@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Palette - High Contrast Pastel Colors */
:root {
  --primary-purple: #ac6dff;
  --primary-purple-light: #c19eff;
  --primary-purple-dark: #7043d7;
  
  --primary-blue: #317ceb;
  --primary-blue-light: #6597e5;
  --primary-blue-dark: #2c67ff;
  
  --primary-teal: #27bbbd;
  --primary-teal-light: #43e7ec;
  --primary-teal-dark: #098c7f;
  
  --primary-orange: #fec31a;
  --primary-orange-light: #ffec59;
  --primary-orange-dark: #d55909;
  
  --primary-pink: #f74ebe;
  --primary-pink-light: #e67da6;
  --primary-pink-dark: #f02d6c;
  
  --text-dark: #172029;
  --text-light: #738395;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --border-color: #dde4f6;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

@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;
}

h1 { font-size: 2.55rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.63rem; }
h4 { font-size: 1.31rem; }
h5 { font-size: 1.16rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  box-shadow: 0 3px 14px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.64rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange-light);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.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%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::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;
    padding-top: 150px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.28rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(0,0,0,0.2);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.61rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.19rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.61rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--bg-light);
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-blue-light) 100%);
  color: white;
}

.priceplan-section .section-title {
  color: white;
  -webkit-text-fill-color: white;
}

.priceplan-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.priceplan-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 13px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-align: center;
  color: var(--text-dark);
}

.priceplan-card:hover {
  transform: translateY(-5px);
}

/* Team Section */
.team-section {
  background-color: var(--bg-light);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-purple);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

/* Case Studies Section */
.casestudy-section {
  background-color: var(--bg-light);
}

.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--primary-blue-light) 100%);
  color: white;
}

.process-section .section-title {
  color: white;
  -webkit-text-fill-color: white;
}

.process-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.process-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-align: center;
  color: var(--text-dark);
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.63rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--bg-light);
}

.timeline-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

/* Career Section */
.career-section {
  background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-pink-light) 100%);
  color: white;
}

.career-section .section-title {
  color: white;
  -webkit-text-fill-color: white;
}

.career-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--bg-light);
}

.coreinfo-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  color: white;
}

.contact-section .section-title {
  color: white;
  -webkit-text-fill-color: white;
}

.contact-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.contact-form {
  background-color: #43e7ec;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 13px 30px rgba(0,0,0,0.2);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(111, 89, 243, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-light);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.faq-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.faq-card:hover {
  transform: translateY(-2px);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 1rem;
  position: relative;
  padding-right: 2rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.63rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--text-light);
  margin-bottom: 0;
  display: block;
  max-height: none;
  overflow: visible;
}

.faq-card[aria-expanded="false"] .faq-answer {
  display: none;
}

.faq-card[aria-expanded="true"] .faq-answer {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-light);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #343b4e 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-purple-light);
  margin-bottom: 1rem;
}

.footer p, .footer li {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
}

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-purple-light);
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.border-radius-custom {
  border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.77rem;
  }
  
  .section-title {
    font-size: 1.88rem;
  }
  
  .section {
    padding: 2rem 0;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
