:root {
  --primary-color: #d50a3b;
  --secondary-color: #4e35b5;
  --accent-color: #ed7445;
  --success-color: #54984d;
  --warning-color: #f39b00;
  --primary-light: #ffc6de;
  --primary-dark: #c61a7b;
  --secondary-light: #8e72f5;
  --secondary-dark: #360572;
  --accent-light: #ff8769;
  --accent-dark: #b73105;
  --text-color: #312e2e;
  --text-light: #4e4e4e;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-2: linear-gradient(45deg, var(--accent-color), var(--warning-color));
  --gradient-3: linear-gradient(90deg, var(--success-color), var(--primary-color));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@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;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 18.00px;
}

.navbar-brand {
  font-size: 1.59rem !important;
  font-weight: 600;
  color: var(--primary-color) !important;
}

h1 {
  font-size: 2.56rem;
  font-weight: 700;
  margin-bottom: 1.14rem;
}

h2 {
  font-size: 2.07rem;
  font-weight: 600;
  margin-bottom: 0.91rem;
}

h3 {
  font-size: 1.59rem;
  font-weight: 600;
  margin-bottom: 0.61rem;
}

p {
  font-size: 1.01rem;
  margin-bottom: 1.14rem;
  color: var(--text-light);
}

.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-1);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../XOK_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.15rem;
}

.section-title h2 {
  color: var(--primary-color);
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-1);
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.15);
}

.service-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.service-icon {
  font-size: 3.10rem;
  color: var(--primary-color);
  margin-bottom: 1.14rem;
}

.price-tag {
  background: var(--gradient-1);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1.11rem;
}

.team-member {
  text-align: center;
  margin-bottom: 2.19rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-light);
}

.testimonial-slider {
  background: var(--light-bg);
  padding: 3rem 0;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.23rem;
  margin-bottom: 1.14rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.gallery-item {
  margin-bottom: 1.14rem;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.faq-item {
  margin-bottom: 1.14rem;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
}

.faq-question {
  background: var(--light-bg);
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}

.faq-answer {
  padding: 1rem;
  display: none;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 1.14rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(247, 44, 99, 0.25);
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-2);
  transform: translateY(-2px);
}

.footer {
  background: var(--text-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

.blog-card {
  margin-bottom: 2.19rem;
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.59rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-2);
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
}

.blob-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--gradient-3);
}

@media (max-width: 768px) {
  .hero-section {
  padding-top: 50px;
    min-height: 80vh;
  }
  
  h1 {
    font-size: 2.07rem;
  }
  
  h2 {
    font-size: 1.59rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
