:root {
  --primary-color: #2c5282;
  --primary-light: #4299e1;
  --primary-dark: #1a365d;
  --secondary-color: #e53e3e;
  --secondary-light: #fc8181;
  --secondary-dark: #c53030;
  --accent-color: #38a169;
  --accent-light: #68d391;
  --accent-dark: #2f855a;
  --neutral-color: #4a5568;
  --neutral-light: #a0aec0;
  --neutral-dark: #2d3748;
  --background-color: #f7fafc;
  --background-light: #ffffff;
  --background-dark: #edf2f7;
}

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

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

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--neutral-dark);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--neutral-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  background: var(--primary-light);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-decoration:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
}

.hero-decoration:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  background: var(--accent-color);
}

/* Services Section */
.service-card {
  background: var(--background-light);
  border: 2px solid var(--background-dark);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 82, 130, 0.15);
  border-color: var(--primary-light);
}

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

/* Team Section */
.team-card {
  background: var(--background-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--background-dark);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--neutral-color);
}

/* Reviews Section */
.review-card {
  background: var(--background-light);
  border: 2px solid var(--background-dark);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

.review-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* FAQ Section */
.faq-card {
  background: var(--background-light);
  border: 2px solid var(--background-dark);
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--neutral-color);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--background-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--background-dark);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 82, 130, 0.25);
}

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

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

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

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

/* Navigation */
.navbar {
  background-color: var(--background-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.nav-link {
  color: var(--neutral-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: var(--background-dark);
}

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

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

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

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

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-padding-small {
  padding: 3rem 0;
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--neutral-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-color);
  font-size: 1.5rem;
}

/* Blog Cards */
.blog-card {
  background: var(--background-light);
  border: 2px solid var(--background-dark);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

/* Process/Timeline Items */
.process-item, .timeline-item {
  background: var(--background-light);
  border: 2px solid var(--background-dark);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

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

/* Career Cards */
.career-card {
  background: var(--background-light);
  border: 2px solid var(--background-dark);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--background-dark);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
} 

.hero-section h1 {
    padding-top: 250px;
}


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

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

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

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
