:root {
  --primary-1: #744eec;
  --primary-2: #7db1ff;
  --primary-3: #00bebc;
  --primary-4: #ff86ab;
  --primary-5: #f7d96a;
  --light-1: #f8f9fa;
  --light-2: #eff2f6;
  --light-3: #b7c5cd;
  --dark-1: #1d1f20;
  --dark-2: #27292b;
  --dark-3: #4e5d66;
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-1);
  line-height: 1.6;
}

/* Header styles */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-1);
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
  color: white;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
    padding-top: 250px;
}

.hero-section .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Section spacing */
.section-padding {
  padding: 4rem 0;
}

/* Section titles */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-1);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-2);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--dark-3);
  margin-bottom: 3rem;
}

/* Cards */
.custom-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Services section */
.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-1);
}

/* Features section */
.features-section {
  background: var(--light-1);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

/* Team section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

/* Reviews section */
.review-card {
  background: white;
  border-left: 4px solid var(--primary-1);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* FAQ section */
.faq-card {
  background: white;
  border: 1px solid var(--light-3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-1);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--dark-3);
}

/* Contact form */
.contact-section {
  background: var(--light-1);
}

.form-control {
  border: 2px solid var(--light-3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(117, 102, 233, 0.25);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}

/* Footer */
.footer {
  background: var(--dark-1);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-1);
}

/* Gallery section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process section */
.process-step {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Timeline section */
.timeline-item {
  border-left: 3px solid var(--primary-1);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--primary-1);
  border-radius: 50%;
}

/* Career section */
.career-item {
  background: white;
  border: 1px solid var(--light-3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.career-item:hover {
  border-color: var(--primary-1);
}

/* Core info section */
.core-info-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Blog section */
.blog-post {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-3px);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Price plan section */
.price-card {
  background: white;
  border: 2px solid var(--light-3);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-1);
  transform: translateY(-5px);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-3);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Case study section */
.case-study-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

/* Decorative elements */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-2);
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-3);
  bottom: 20%;
  left: 5%;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
