:root {
  /* Primary Color Palette */
  --primary-ocean: #4991d8;
  --primary-sunset: #ffbe6a;
  --primary-forest: #7fe938;
  --primary-sand: #e69825;
  --primary-purple: #a100ff;
  
  /* Light Variations */
  --light-ocean: #d1e4ff;
  --light-sunset: #FFF2EC;
  --light-forest: #F7FCF0;
  --light-sand: #FEF9F1;
  --light-purple: #f0e3ff;
  
  /* Dark Variations */
  --dark-ocean: #2c6991;
  --dark-sunset: #d4903e;
  --dark-forest: #63bb19;
  --dark-sand: #ad8121;
  --dark-purple: #5f1ccf;
  
  /* Neutral Colors */
  --text-primary: #232020;
  --text-secondary: #727171;
  --text-light: #838383;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --border-light: #f3eeee;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  font-size: 16px;
}

.navbar-brand {
  font-size: 1.23rem !important;
  font-weight: 600;
  color: var(--primary-ocean);
}

h1 {
  font-size: 2.31rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.83rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.99rem;
}

h3 {
  font-size: 1.64rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.62rem;
}

h4 {
  font-size: 1.29rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.74rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-ocean) 0%, var(--light-sunset) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-forest), var(--primary-sand));
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-ocean);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-sunset);
  margin-bottom: 1.63rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Services Cards */
.service-card {
  background: var(--bg-white);
  border-radius: 17px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 30px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-sand);
}

/* Feature Items */
.feature-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 7px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--bg-white);
  border-radius: 13px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 6px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 2rem;
}

.price-card:hover {
  border-color: var(--primary-ocean);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-sunset);
  background: linear-gradient(135deg, var(--light-sunset), var(--bg-white));
}

/* Team Member Cards */
.team-member {
  background: var(--bg-white);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  overflow: hidden;
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-3px);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 9px 20px rgba(0,0,0,0.08);
  border-left: 9px solid var(--primary-purple);
  margin-bottom: 2rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  border-left: 3px solid var(--primary-ocean);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-ocean);
  margin-bottom: 0.71rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 7px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-ocean);
  box-shadow: 0 0 0 0.2rem rgba(58, 122, 213, 0.25);
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-ocean), var(--primary-purple));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--dark-ocean), var(--dark-purple));
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid var(--primary-ocean);
  color: var(--primary-ocean);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-custom:hover {
  background: var(--primary-ocean);
  color: white;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-ocean), var(--dark-purple));
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-ocean);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-ocean);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Process/Timeline Items */
.process-item, .timeline-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  position: relative;
  margin-bottom: 2rem;
}

.process-number, .timeline-number {
  background: var(--primary-sand);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -20px;
  left: 2rem;
}

/* Blog Cards */
.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Case Study Cards */
.casestudy-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary-forest);
  margin-bottom: 2rem;
}

/* Career Cards */
.career-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
  margin-bottom: 2rem;
}

.career-card:hover {
  border-color: var(--primary-ocean);
}

/* Core Info Cards */
.coreinfo-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.coreinfo-card:hover {
  transform: translateY(-3px);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Custom Spacing Utilities */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.my-6 {
  margin-top: 5rem;
  margin-bottom: 5rem;
} 

.hero-section h1 {
    padding-top: 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;
    }
}
