:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-green: #8FBC8F;
  --primary-orange: #FFB366;
  --primary-pink: #F4A6CD;
  --primary-blue: #87CEEB;
  --primary-purple: #DDA0DD;
  
  /* Light Shades */
  --light-green: #E8F5E8;
  --light-orange: #FFF4E6;
  --light-pink: #FDF2F8;
  --light-blue: #F0F8FF;
  --light-purple: #F8F0FF;
  
  /* Dark Shades */
  --dark-green: #556B2F;
  --dark-orange: #CC8800;
  --dark-pink: #C1477A;
  --dark-blue: #4682B4;
  --dark-purple: #9370DB;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #212529;
}

/* Typography */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
    overflow-x: hidden;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-green);
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--dark-green);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-green);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* 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: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-shape {
  position: absolute;
  background: var(--primary-pink);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 15%;
  background: var(--primary-orange);
}

/* About Section */
#about {
  padding: 80px 0;
  background: var(--white);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

/* Services Section */
#services {
  padding: 80px 0;
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
}

/* Features Section */
#features {
  padding: 80px 0;
  background: var(--white);
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

/* Price Plan Section */
#priceplan {
  padding: 80px 0;
  background: var(--light-green);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.price-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
}

.price-period {
  color: var(--gray);
  font-size: 1rem;
}

/* Team Section */
#team {
  padding: 80px 0;
  background: var(--white);
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

/* Reviews Section */
#reviews {
  padding: 80px 0;
  background: var(--light-pink);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.review-stars {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Case Study Section */
#casestudy {
  padding: 80px 0;
  background: var(--white);
}

.case-card {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

/* Process Section */
#process {
  padding: 80px 0;
  background: var(--light-purple);
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Timeline Section */
#timeline {
  padding: 80px 0;
  background: var(--white);
}

.timeline-item {
  border-left: 3px solid var(--primary-blue);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  background: var(--primary-blue);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 0;
}

/* Career Section */
#career {
  padding: 80px 0;
  background: var(--light-orange);
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  padding: 80px 0;
  background: var(--white);
}

.info-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Contact Section */
#contact {
  padding: 80px 0;
  background: var(--light-green);
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
}

.btn-primary {
  background: var(--primary-green);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-green);
}

/* Blog Section */
#blog {
  padding: 80px 0;
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px 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: 1.5rem;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background: var(--light-blue);
}

.faq-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background: var(--white);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px 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: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.footer-link {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utility Classes */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.text-primary-green {
  color: var(--primary-green);
}

.text-primary-orange {
  color: var(--primary-orange);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.bg-primary-orange {
  background-color: var(--primary-orange);
}

/* Breadcrumb */
.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
} 


/* 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;
    }
}
