:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #5590df;
  --primary-green: #80cc1a;
  --primary-purple: #6918f2;
  --primary-orange: #fe773e;
  --primary-teal: #61edc0;
  
  /* Light Shades */
  --light-blue: #ddeffb;
  --light-green: #ecfed8;
  --light-purple: #fbe1ff;
  --light-orange: #ffecd1;
  --light-teal: #e9eeee;
  
  /* Dark Shades */
  --dark-blue: #21a2eb;
  --dark-green: #3c7a3f;
  --dark-purple: #751ba2;
  --dark-orange: #fea217;
  --dark-teal: #0a807e;
  
  /* Additional Colors */
  --white: #FFFFFF;
  --black: #1e1e1e;
  --gray-light: #F8F9FA;
  --gray-dark: #525964;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1rem;
  --font-size-h6: 0.875rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --element-margin: 23px;
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--black);
  font-size: var(--font-size-base);
  margin: 0;
  padding: 0;
}

/* 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;
  margin-bottom: 1rem;
  color: var(--black);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Navbar */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand {
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--dark-blue);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--black);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 0;
  height: 6px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(13px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-title {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--gray-dark);
  font-size: 1.33rem;
  margin-bottom: 1.57rem;
}

.hero-desc {
  color: var(--gray-dark);
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--gray-dark);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--gray-light);
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 110px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-name {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 0.57rem;
}

.feature-desc {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
}

/* Services Section */
.services-section {
  background-color: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid #d3dce7;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background-color: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-name {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 0.72rem;
}

.service-desc {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.service-features {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1.62rem;
  font-style: italic;
}

.service-price {
  color: var(--primary-blue);
  font-size: 1.53rem;
  font-weight: 700;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-blue);
}

.price-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 18px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
}

.price-name {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 1.40rem;
  margin-bottom: 0.58rem;
}

.price-desc {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.price-features {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1.67rem;
  text-align: left;
}

.price-features ul {
  list-style: none;
  padding: 0;
}

.price-features li {
  margin-bottom: 0.56rem;
}

.price-features li::before {
  content: "âœ“";
  color: var(--primary-green);
  margin-right: 0.5rem;
}

.price-amount {
  color: var(--primary-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.team-name {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 0.67rem;
}

.team-role {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--gray-light);
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 9px 17px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.review-text {
  color: var(--gray-dark);
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  color: var(--dark-blue);
  font-weight: 600;
  text-align: right;
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-card {
  background: var(--white);
  border: 1px solid #fdfdfd;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 0.64rem;
}

.faq-answer {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-blue);
}

.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  border: 1px solid #d1dde8;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(78, 145, 226, 0.25);
  outline: none;
}

.contact-form .form-check-input {
  margin-top: 0.42rem;
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.contact-form .form-check-label {
  font-size: var(--font-size-small);
  color: var(--gray-dark);
}

.contact-info {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-item {
  margin-bottom: 1.58rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-item strong {
  color: var(--dark-blue);
  min-width: 80px;
}

.contact-info-item span {
  color: var(--gray-dark);
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: var(--font-size-small);
}

.footer a:hover {
  color: var(--white);
}

/* Breadcrumbs */
.breadcrumb-section {
  background-color: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Gallery */
.gallery-section {
  background-color: var(--white);
}

.gallery-item {
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(48, 118, 206, 0.70);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 10px;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: '\f002';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 0.64rem;
  font-size: 1.19rem;
}

.blog-excerpt {
  color: var(--gray-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-small);
}

.blog-link:hover {
  color: var(--dark-blue);
}

/* Space Page */
#space {
  min-height: 70vh;
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading Animation */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-light);
  border-top: 4px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-blue);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.62rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-light {
  background-color: var(--gray-light);
}

.bg-white {
  background-color: var(--white);
}

.bg-primary {
  background-color: var(--primary-blue);
}

.text-primary {
  color: var(--primary-blue);
}

.text-secondary {
  color: var(--gray-dark);
}

.shadow {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rounded {
  border-radius: 10px;
}

.h-100 {
  height: 100%;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
} 


/* 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;
    }
}
