@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.4.0/css/all.min.css');

:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-1: #FF6B9D; /* Soft Pink */
  --primary-2: #4ECDC4; /* Mint Green */
  --primary-3: #45B7D1; /* Sky Blue */
  --primary-4: #96CEB4; /* Sage Green */
  --primary-5: #FFEAA7; /* Pastel Yellow */
  
  /* Light Shades */
  --primary-1-light: #FFB3D1;
  --primary-2-light: #A6F3F0;
  --primary-3-light: #9DDCF2;
  --primary-4-light: #C8E6D3;
  --primary-5-light: #FFF5CC;
  
  /* Dark Shades */
  --primary-1-dark: #E5478B;
  --primary-2-dark: #2BB5AB;
  --primary-3-dark: #3A9BC1;
  --primary-4-dark: #7DB99A;
  --primary-5-dark: #F4D73D;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 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;
  --card-padding: 2rem;
  --border-radius: 0.5rem;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 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: #333;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4, h5, h6 {
  font-size: var(--font-size-large);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--box-shadow);
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-5);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-4) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  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.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--primary-5-light);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: var(--font-size-large);
  color: white;
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: var(--font-size-3xl);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-1-dark);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  text-align: center;
  color: var(--primary-3-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--font-size-base);
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--primary-5-light) 0%, var(--primary-2-light) 100%);
}

.about-feature {
  background: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-3-light) 0%, var(--primary-4-light) 100%);
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: bold;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: #666;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-2);
  margin-right: 0.5rem;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--primary-4-light) 0%, var(--primary-5-light) 100%);
}

.team-member {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  text-align: center;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member-name {
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--primary-1-dark);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-3-dark);
  font-size: var(--font-size-base);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-3-light) 100%);
}

.review-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: bold;
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--primary-2-light) 0%, var(--primary-4-light) 100%);
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  background: var(--primary-3);
  color: white;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-3-dark);
}

.faq-answer {
  padding: 1rem;
  color: #666;
  border-top: 1px solid #eee;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--primary-5-light) 0%, var(--primary-1-light) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-3-light) 0%, var(--primary-5-light) 100%);
}

.contact-form {
  background: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  font-weight: 500;
  color: var(--primary-1-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-1-dark) 0%, var(--primary-3-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-5-light);
  margin-bottom: 1rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-5);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin: 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
}

.shadow-custom {
  box-shadow: var(--box-shadow);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--primary-4-light) 0%, var(--primary-2-light) 100%);
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-1);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--primary-5-light) 0%, var(--primary-3-light) 100%);
}

.price-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card .price {
  font-size: var(--font-size-3xl);
  font-weight: bold;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.price-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-card .features li {
  padding: 0.5rem 0;
  color: #666;
}

.price-card .features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-2);
  margin-right: 0.5rem;
}

/* Additional Page Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-section {
  padding: 4rem 0;
}

.page-section:nth-child(even) {
  background: linear-gradient(135deg, var(--primary-2-light) 0%, var(--primary-4-light) 100%);
}

.page-section:nth-child(odd) {
  background: linear-gradient(135deg, var(--primary-5-light) 0%, var(--primary-1-light) 100%);
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-4) 100%);
  color: white;
  font-size: var(--font-size-2xl);
  text-align: center;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-4-light) 100%);
}

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
  color: var(--primary-1-dark);
}

.blog-card-excerpt {
  color: #666;
  margin-bottom: 1rem;
}

.blog-card-link {
  color: var(--primary-1);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.blog-card-link:hover {
  color: var(--primary-1-dark);
}

/* Case Study Section */
.casestudy-section {
  background: linear-gradient(135deg, var(--primary-3-light) 0%, var(--primary-5-light) 100%);
}

.casestudy-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

.casestudy-title {
  font-size: var(--font-size-xl);
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(135deg, var(--primary-4-light) 0%, var(--primary-2-light) 100%);
}

.timeline-item {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary-1);
  border-radius: 50%;
}

/* Career Section */
.career-section {
  background: linear-gradient(135deg, var(--primary-5-light) 0%, var(--primary-3-light) 100%);
}

.career-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-title {
  font-size: var(--font-size-xl);
  color: var(--primary-1-dark);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-3-dark);
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--primary-2-light) 0%, var(--primary-5-light) 100%);
}

.coreinfo-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

.coreinfo-card i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.coreinfo-title {
  font-size: var(--font-size-xl);
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-2-light) 100%);
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: var(--font-size-xl);
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
} 


/* 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;
    }
}
