:root {
  /* Primary color palette */
  --primary-color-1: #4b99d4; /* Sky blue */
  --primary-color-2: #dce0e5; /* Light blue */
  --primary-color-3: #f0c948; /* Amber yellow */
  --primary-color-4: #86dcaa; /* Mint green */
  --primary-color-5: #f7c6cb; /* Soft pink */
  
  /* Light/dark shades */
  --light-shade: #F9FAFC;
  --dark-shade: #212b3d;
  
  /* Text colors */
  --text-primary: #474040;
  --text-secondary: #666b7a;
  --text-light: #FFFFFF;
  
  /* Spacings */
  --spacing-sm: 0.75rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border radius */
  --border-radius: 0.5rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-primary);
  background-color: var(--light-shade);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-shade);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  color: var(--text-secondary);
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin-left: var(--spacing-sm);
  transition: color 0.3s ease;
}

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

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

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

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-shade);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

.hero-desc {
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
}

.hero-img {
  position: relative;
  z-index: 2;
}

/* About section */
.about {
  background-color: var(--light-shade);
}

.feature-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

/* Services section */
.services {
  background-color: var(--primary-color-2);
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-card h3 {
  font-size: 1.3rem;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.service-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-top: var(--spacing-sm);
}

.service-card .features {
  margin-top: var(--spacing-sm);
  padding-left: 1.5rem;
}

.service-card .features li {
  margin-bottom: 0.5rem;
}

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

.features-card {
  text-align: center;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.features-card h3 {
  font-size: 1.3rem;
  margin: var(--spacing-sm) 0;
}

/* Price plan section */
.price-plan {
  background-color: var(--primary-color-2);
}

.price-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

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

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

.price-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: var(--spacing-md) 0;
}

.price-card .features {
  margin: var(--spacing-md) 0;
  padding-left: 0;
  list-style: none;
}

.price-card .features li {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.price-card .btn {
  margin-top: var(--spacing-md);
}

/* Team section */
.team {
  background-color: var(--light-shade);
}

.team-card {
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.team-img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: var(--spacing-sm);
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--text-secondary);
}

/* Reviews section */
.reviews {
  background-color: var(--primary-color-2);
}

.review-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-card .text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

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

/* Case studies section */
.case-study {
  background-color: var(--light-shade);
}

.case-study-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.case-study-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

/* Process section */
.process {
  background-color: var(--primary-color-2);
}

.process-card {
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;
}

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

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

/* Timeline section */
.timeline {
  background-color: var(--light-shade);
}

.timeline-card {
  position: relative;
  padding-left: 30px;
  margin-bottom: var(--spacing-md);
  border-left: 2px solid var(--primary-color-1);
}

.timeline-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

/* Career section */
.career {
  background-color: var(--primary-color-2);
}

.career-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.career-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

.career-card .role {
  color: var(--primary-color-1);
  margin-bottom: var(--spacing-sm);
}

/* Core info section */
.core-info {
  background-color: var(--light-shade);
}

.info-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

/* Contact section */
.contact {
  background-color: var(--primary-color-2);
}

.contact-form {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-control {
  margin-bottom: var(--spacing-md);
}

.contact-info {
  margin-bottom: var(--spacing-md);
}

.contact-info p {
  margin-bottom: var(--spacing-sm);
}

/* Blog section */
.blog {
  background-color: var(--light-shade);
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

.blog-card .excerpt {
  margin-bottom: var(--spacing-md);
}

/* FAQ section */
.faq {
  background-color: var(--primary-color-2);
}

.faq-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color-1);
}

/* Gallery section */
.gallery {
  background-color: var(--light-shade);
}

.gallery-img {
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  background-color: var(--dark-shade);
  color: var(--text-light);
  padding: var(--spacing-lg) 0;
}

footer h5 {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

footer p {
  color: rgba(255, 255, 255, 0.7);
}

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

footer a:hover {
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

#site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-lg);
  text-align: center;
  display: block;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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