:root {
  /* Main color palette */
  --primary-color: #7b86fa;
  --secondary-color: #6450f9;
  --accent-color: #96a1e5;
  --light-color: #f8fafc;
  --dark-color: #27374f;
  
  /* Shades */
  --primary-light: #8e91ff;
  --primary-dark: #4751d0;
  --secondary-light: #7a7dff;
  --secondary-dark: #452db5;
  --accent-light: #c4c5e5;
  --accent-dark: #8a9fed;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
}

/* Common Section Styling */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styling */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Card Styling */
.card {
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
    padding-top: 100px;
}

/* About Section */
.about {
  background-color: white;
}

.feature-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  background-color: var(--light-color);
}

.service-card {
  height: 100%;
  padding: 2rem;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.service-features {
  padding-left: 0;
  list-style-type: none;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background-color: white;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--light-color);
}

.price-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  height: 100%;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Team Section */
.team {
  background-color: white;
}

.team-card {
  text-align: center;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--accent-light);
}

/* Reviews Section */
.reviews {
  background-color: var(--light-color);
}

.review-card {
  padding: 2rem;
}

.review-author {
  font-weight: 700;
  margin-top: 1rem;
}

/* Case Studies Section */
.case-studies {
  background-color: white;
}

.case-study-card {
  height: 100%;
}

/* Process Section */
.process {
  background-color: var(--light-color);
}

.process-item {
  text-align: center;
  padding: 0 1rem;
}

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

/* Timeline Section */
.timeline {
  background-color: white;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 1;
}

.timeline-item:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 7px;
  width: 1px;
  height: calc(100% + 1rem);
  background-color: var(--accent-color);
}

.timeline-item:last-child:after {
  display: none;
}

/* Career Section */
.career {
  background-color: var(--light-color);
}

.job-card {
  height: 100%;
  padding: 2rem;
}

.job-role {
  color: var(--primary-color);
  font-weight: 600;
}

/* Core Info Section */
.core-info {
  background-color: white;
}

.info-item {
  text-align: center;
  padding: 2rem 1rem;
  height: 100%;
}

/* Contact Section */
.contact {
  background-color: var(--light-color);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-card {
  height: 100%;
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

/* FAQ Section */
.faq {
  background-color: var(--light-color);
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery {
  padding: 0;
}

.gallery-item {
  padding: 0;
  overflow: hidden;
}

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

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

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0 2rem;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

footer ul {
  padding-left: 0;
  list-style-type: none;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: white;
  text-decoration: none;
}

#sitedesc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

#site-copyright {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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