/* Architecture Studio Theme - Professional Blue Teal */

:root {
  --primary-color: #1565C0;
  --secondary-color: #00897B;
  --primary-dark: #0D47A1;
  --secondary-dark: #00695C;
  --primary-light: #1976D2;
  --secondary-light: #26A69A;
  --light-bg: #F5F9FC;
  --dark-text: #1A1A1A;
  --light-text: #FFFFFF;
  --gray-text: #5A6C7D;
  --success: #43A047;
  --danger: #E53935;
  --warning: #FB8C00;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  line-height: 1.1;
}

.lead {
  font-size: 1.15rem;
  color: var(--gray-text);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  box-shadow: 0 2px 20px rgba(21, 101, 192, 0.1);
}

.navbar.fixed-top {
  backdrop-filter: blur(10px);
}

.navbar.sticky-top {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  box-shadow: 0 4px 30px rgba(21, 101, 192, 0.2);
}

.navbar-dark {
  background-color: var(--primary-color) !important;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-text) !important;
  transition: var(--transition);
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: var(--secondary-light) !important;
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--light-text) !important;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--light-text) !important;
  background-color: var(--secondary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-light);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
}

.hero-left, .hero-right {
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-content .badge {
  background: rgba(255, 255, 255, 0.2) !important;
  color: var(--light-text) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 0.95rem;
  animation: float 3s ease-in-out infinite;
}

.hero-content .display-3 {
  color: var(--light-text) !important;
  font-weight: 800;
  margin: 1.5rem 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Data Visualization */
.data-viz-container {
  position: relative;
  z-index: 3;
}

.floating-chart {
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.floating-chart:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bg-opacity-10 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.chart-bars {
  height: 120px;
  display: flex;
}

.bar {
  width: 100%;
  min-width: 40px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.bar:hover {
  opacity: 1 !important;
  transform: translateY(-5px);
}

.bar:nth-child(1) {
  height: 60%;
  background: linear-gradient(180deg, #26A69A 0%, #00897B 100%) !important;
}

.bar:nth-child(2) {
  height: 85%;
  background: linear-gradient(180deg, #42A5F5 0%, #1976D2 100%) !important;
}

.bar:nth-child(3) {
  height: 70%;
  background: linear-gradient(180deg, #66BB6A 0%, #43A047 100%) !important;
}

.bar:nth-child(4) {
  height: 95%;
  background: linear-gradient(180deg, #FFA726 0%, #FB8C00 100%) !important;
}

.floating-metric {
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-metric .display-6 {
  color: var(--light-text) !important;
  font-weight: 800;
}

.floating-metric .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

/* Buttons */
.btn {
  font-weight: 600;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

.btn-primary, .btn.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  color: var(--light-text) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.btn-primary:hover, .btn.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0A2F6B 100%) !important;
  color: var(--light-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
}

.btn-outline, .btn-outline-primary {
  background: transparent !important;
  color: var(--light-text) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.btn-outline:hover, .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: var(--light-text) !important;
  border-color: var(--light-text) !important;
  transform: translateY(-3px);
}

.btn-light {
  background: var(--light-text) !important;
  color: var(--primary-color) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: var(--light-bg) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-secondary {
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  background: transparent !important;
}

.btn-outline-secondary:hover {
  background: var(--secondary-color) !important;
  color: var(--light-text) !important;
  border-color: var(--secondary-color) !important;
}

/* Statistics */
.stat-item {
  text-align: center;
  padding: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.stat-item .h2 {
  color: var(--light-text) !important;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-item .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Metrics Section */
.metrics-section {
  background: var(--light-bg);
  padding: 5rem 0;
}

.metric-card {
  background: white;
  border: 1px solid rgba(21, 101, 192, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(21, 101, 192, 0.15) !important;
}

.metric-card:hover::before {
  height: 100%;
}

.metric-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.metric-card:hover .metric-icon {
  transform: scale(1.1) rotate(5deg);
}

.metric-card:nth-child(4n+1) .metric-icon {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(21, 101, 192, 0.2));
  color: var(--primary-color) !important;
}

.metric-card:nth-child(4n+2) .metric-icon {
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.1), rgba(0, 137, 123, 0.2));
  color: var(--secondary-color) !important;
}

.metric-card:nth-child(4n+3) .metric-icon {
  background: linear-gradient(135deg, rgba(67, 160, 71, 0.1), rgba(67, 160, 71, 0.2));
  color: var(--success) !important;
}

.metric-card:nth-child(4n+4) .metric-icon {
  background: linear-gradient(135deg, rgba(251, 140, 0, 0.1), rgba(251, 140, 0, 0.2));
  color: var(--warning) !important;
}

.metric-card .h5 {
  color: var(--dark-text);
  font-weight: 700;
}

.metric-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hover-reveal {
  transition: var(--transition);
  font-size: 1.5rem;
}

.metric-card:hover .hover-reveal {
  opacity: 1 !important;
  transform: translateX(-10px);
}

/* Testimonial Banner */
.testimonial-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: var(--light-text) !important;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.testimonial-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.testimonial-banner .bi-star-fill {
  color: #FFD700 !important;
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

.testimonial-banner .h4 {
  color: var(--light-text) !important;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-banner .lead {
  color: rgba(255, 255, 255, 0.9) !important;
}

.testimonial-banner .opacity-75 {
  opacity: 0.75 !important;
}

.list-unstyled li {
  padding: 0.75rem 0;
  color: var(--light-text);
}

.list-unstyled .bi-check-circle-fill {
  color: #66BB6A !important;
  font-size: 1.2rem;
}

/* Services Selector */
.services-selector {
  padding: 5rem 0;
  background: white;
}

.services-selector .display-4 {
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 3rem;
}

.nav-pills {
  background: var(--light-bg);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.nav-pills .nav-link {
  color: var(--dark-text) !important;
  background: white;
  border: 2px solid transparent;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 50px !important;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-pills .nav-link:hover {
  background: var(--primary-light);
  color: var(--light-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(21, 101, 192, 0.2);
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
  color: var(--light-text) !important;
  box-shadow: 0 5px 20px rgba(21, 101, 192, 0.3);
}

.tab-content {
  padding: 3rem 0;
}

.tab-pane {
  animation: fadeIn 0.5s ease-out;
}

.tab-pane h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tab-pane p {
  color: var(--gray-text);
  line-height: 1.8;
}

.tab-pane .img-fluid {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.tab-pane .img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
  color: var(--light-text) !important;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
  opacity: 0.3;
}

.cta-section .display-5 {
  color: var(--light-text) !important;
  font-weight: 800;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
}

/* Cards */
.card {
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: 16px;
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(21, 101, 192, 0.15) !important;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--light-text) !important;
  border: none;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--gray-text);
  line-height: 1.7;
}

.card-img-top {
  transition: var(--transition);
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

/* Team Members */
.team-member {
  text-align: center;
  transition: var(--transition);
}

.team-member .card {
  border: none;
  background: var(--light-bg);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 2rem auto 1rem;
  border: 4px solid var(--primary-color);
  transition: var(--transition);
}

.team-member:hover img {
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

/* Timeline */
.timeline-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text) !important;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(21, 101, 192, 0.3);
}

.timeline-content {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.15);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 20px;
  height: 2px;
  background: var(--primary-color);
}

/* Forms */
.form-control, .form-select {
  border: 2px solid rgba(21, 101, 192, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(21, 101, 192, 0.15) !important;
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.form-check-input {
  border: 2px solid var(--primary-color);
  width: 1.25rem;
  height: 1.25rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  margin-left: 0.5rem;
  color: var(--dark-text);
}

/* Progress Bar */
.progress {
  height: 8px;
  border-radius: 10px;
  background: rgba(21, 101, 192, 0.1);
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  transition: width 0.6s ease;
}

/* Alerts */
.alert {
  border-radius: 12px;
  border: none;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
}

.alert-info {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(21, 101, 192, 0.05));
  color: var(--primary-dark) !important;
  border-left: 4px solid var(--primary-color);
}

.alert-success {
  background: linear-gradient(135deg, rgba(67, 160, 71, 0.1), rgba(67, 160, 71, 0.05));
  color: #2E7D32 !important;
  border-left: 4px solid var(--success);
}

.alert-heading {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Accordion */
.accordion-item {
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: white;
  color: var(--dark-text) !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--light-text) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button.collapsed::after {
  filter: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--gray-text);
  line-height: 1.7;
  background: var(--light-bg);
}

/* Modal */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--light-text) !important;
  border: none;
  padding: 1.5rem 2rem;
}

.modal-title {
  color: var(--light-text) !important;
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

.btn-close, .btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/* Tables */
.table {
  border-radius: 12px;
  overflow: hidden;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--light-text) !important;
}

.table thead th {
  border: none;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover {
  background: rgba(21, 101, 192, 0.05);
  transform: scale(1.01);
}

.table td {
  padding: 1rem;
  vertical-align: middle;
  border-color: rgba(21, 101, 192, 0.1);
}

.table-bordered {
  border: 1px solid rgba(21, 101, 192, 0.1);
}

/* List Group */
.list-group-item {
  border: 1px solid rgba(21, 101, 192, 0.1);
  transition: var(--transition);
  padding: 1rem 1.25rem;
}

.list-group-item:hover {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
}

.list-group-flush .list-group-item {
  border-left: none;
  border-right: none;
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark)) !important;
}

.bg-success {
  background: linear-gradient(135deg, #66BB6A, #43A047) !important;
}

.bg-danger {
  background: linear-gradient(135deg, #EF5350, #E53935) !important;
}

.bg-light {
  background: var(--light-bg) !important;
}

/* Text Colors */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-muted {
  color: var(--gray-text) !important;
}

.text-white {
  color: var(--light-text) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-dark {
  color: var(--dark-text) !important;
}

.text-light {
  color: var(--light-text) !important;
}

/* Utilities */
.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.rounded-3 {
  border-radius: 12px !important;
}

.rounded-4 {
  border-radius: 16px !important;
}

.rounded-pill {
  border-radius: 50px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Office Gallery */
.office-gallery-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.office-gallery-container::-webkit-scrollbar {
  height: 8px;
}

.office-gallery-container::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 10px;
}

.office-gallery-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.office-gallery-container img {
  border-radius: 12px;
  min-width: 300px;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.office-gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Deadline Cards */
.deadline-card {
  background: white;
  border-left: 4px solid var(--warning);
  transition: var(--transition);
}

.deadline-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(251, 140, 0, 0.2);
}

.deadline-card .bi-exclamation-triangle-fill {
  color: var(--warning) !important;
}

/* Privacy Content */
.privacy-content h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content h3 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content p {
  color: var(--gray-text);
  line-height: 1.8;
}

/* Filter Buttons */
.filter-btn {
  margin: 0.25rem;
  transition: var(--transition);
}

.filter-btn.active {
  background: var(--primary-color) !important;
  color: var(--light-text) !important;
  border-color: var(--primary-color) !important;
}

/* Parallax Header */
.parallax-header {
  height: 400px;
  background-image: linear-gradient(135deg, rgba(21, 101, 192, 0.9), rgba(0, 137, 123, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231565C0" width="1200" height="400"/></svg>');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parallax-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.8), rgba(0, 137, 123, 0.8));
}

/* Bootstrap Icons */
[class^="bi-"], [class*=" bi-"] {
  display: inline-block;
  vertical-align: middle;
}

.bi {
  display: inline-block;
  vertical-align: middle;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .display-3 {
    font-size: 3rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
    background: rgba(21, 101, 192, 0.95);
    border-radius: 12px;
    margin-top: 1rem;
  }
  
  .nav-link {
    margin: 0.25rem 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 80px 0 40px;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .floating-chart {
    margin-top: 2rem;
  }
  
  .stat-item .h2 {
    font-size: 2rem;
  }
  
  .services-selector,
  .metrics-section,
  .testimonial-banner,
  .cta-section {
    padding: 3rem 0;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  .display-5 {
    font-size: 1.5rem;
  }
  
  .hero-content .badge {
    font-size: 0.85rem;
  }
  
  .hero-content .lead {
    font-size: 1rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-item .h2 {
    font-size: 1.75rem;
  }
  
  .metric-card {
    margin-bottom: 1rem;
  }
  
  .nav-pills .nav-link {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .parallax-header {
    height: 300px;
    background-attachment: scroll;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section {
    padding: 60px 0 30px;
  }
  
  .display-3 {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 0.95rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .floating-chart {
    padding: 1rem !important;
  }
  
  .chart-bars {
    height: 80px;
  }
  
  .bar {
    min-width: 30px;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .services-selector,
  .metrics-section,
  .testimonial-banner,
  .cta-section {
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .modal,
  .floating-chart {
    display: none !important;
  }
  
  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}