:root {
  /* Color scheme variables */
  --primary-color: #0056b3;
  --primary-color-dark: #004494;
  --secondary-color: #e63946;
  --secondary-color-dark: #c1303c;
  --accent-color: #00c2a8;
  --accent-color-dark: #00a991;
  --text-color: #333333;
  --text-color-light: #6c757d;
  --bg-color: #ffffff;
  --bg-color-light: #f8f9fa;
  --bg-color-dark: #343a40;
  
  /* Gradient variables */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), #0088cc);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff8c94);
  --gradient-accent: linear-gradient(135deg, var(--accent-color), #00e6cb);
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Border radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
  
  /* Box shadows */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  position: relative;
  padding-bottom: var(--spacing-md);
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--primary-color-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Header styles */
.header {
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar-brand h1 {
  margin-bottom: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
  transform-origin: right center;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Button styles */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
}

.btn-primary:hover {
  background: var(--gradient-primary);
  opacity: 0.9;
}

.btn-outline-light {
  border: 2px solid var(--bg-color);
  color: var(--bg-color);
}

.btn-outline-light:hover {
  background-color: var(--bg-color);
  color: var(--primary-color);
}

/* Card styles */
.card {
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: auto;
  display: flex;
  flex-direction: column;

}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: var(--spacing-lg);
}

.card-title {
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-md);
}

.card-text {
  color: var(--text-color-light);
  flex-grow: 1;
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card img {
  transition: transform var(--transition-slow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.card:hover img {
  transform: scale(1.05);
}

.image-container {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  position: relative;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-top: 0;
  padding: 0;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: var(--spacing-lg);
}

/* Services section */
.services .card-body {
  text-align: center;
}

.services h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
}

/* Price list section */
.price-list {
  background-color: var(--bg-color-light);
}

.table thead th {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Portfolio section */
.portfolio .card {
  text-align: center;
}

.portfolio .image-container {
  height: 300px;
}

.portfolio .card-body {
  padding: var(--spacing-lg);
}

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

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  font-size: 0.95rem;
  background-color: white;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--bg-color-dark);
  padding: var(--spacing-xl) 0;
  color: white;
}

.footer h3 {
  color: white;
  margin-bottom: var(--spacing-lg);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  display: inline-block;
  text-decoration: none;
}

.footer-links a:hover,
.social-links a:hover {
  color: white;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  padding-left: 0;
  margin-top: var(--spacing-lg);
}

.social-links li {
  margin-bottom: var(--spacing-sm);
}

.social-links a {
  position: relative;
  padding-left: 1.5rem;
}

.social-links a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-links a[href*="facebook"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-facebook' viewBox='0 0 16 16'%3E%3Cpath d='M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z'/%3E%3C/svg%3E");
}

.social-links a[href*="twitter"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-twitter' viewBox='0 0 16 16'%3E%3Cpath d='M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-instagram' viewBox='0 0 16 16'%3E%3Cpath d='M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z'/%3E%3C/svg%3E");
}

/* Clientele section */
.clientele .card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.clientele .stat-item {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
}

.clientele .stat-item .h1 {
  font-family: var(--font-heading);
  font-weight: 800;
}

.statistics-widget {
  transition: all var(--transition-medium);
}

.statistics-widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Case studies section */
.case-studies .timeline {
  position: relative;
  margin-left: var(--spacing-md);
  border-left: 2px solid var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 6px;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 2px solid white;
}

.timeline-content {
  padding-bottom: var(--spacing-sm);
}

/* Projects section */
.projects .progress {
  height: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-sm);
}

.projects .progress-bar {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-sm);
}

/* Sustainability section */
.sustainability .info-cards .card {
  padding: var(--spacing-md);
  transition: all var(--transition-medium);
}

.sustainability .info-cards .card:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Events Calendar section */
.events-calendar .timeline {
  margin-bottom: var(--spacing-md);
}

.events-calendar .timeline-item:last-child {
  margin-bottom: 0;
}

.events-calendar .list-group-item {
  border-left: none;
  border-right: none;
  padding: var(--spacing-lg);
  transition: all var(--transition-medium);
}

.events-calendar .list-group-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.events-calendar .badge {
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
}

/* Careers section */
.careers .list-group-item {
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.careers .list-group-item:last-child {
  border-bottom: none;
}

/* Press section */
.press .card-body {
  position: relative;
  z-index: 1;
}

.press .card-body:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.05);
  font-family: serif;
  z-index: -1;
}

/* External Resources section */
.external-resources .card {
  transition: all var(--transition-medium);
}

.external-resources .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Micro-interactions */
.micro-interaction {
  transition: all var(--transition-medium);
}

.micro-interaction:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Animation for scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy and Terms pages */
.privacy-content,
.terms-content {
  padding-top: 100px;
}

.privacy-content h2,
.terms-content h2 {
  font-size: 1.8rem;
}

.privacy-content h3,
.terms-content h3 {
  font-size: 1.4rem;
}

/* Success page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.success-page h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
}

.success-page p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-lg);
}

/* Read more links */
.read-more {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  padding-right: 1.5rem;
  transition: all var(--transition-medium);
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-medium);
}

.read-more:hover {
  color: var(--primary-color-dark);
  text-decoration: none;
}

.read-more:hover:after {
  transform: translate(5px, -50%);
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
  .hero h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  section {
    padding: var(--spacing-lg) 0;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .card-body {
    padding: var(--spacing-md);
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  .footer {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

html,body{
  overflow-x: hidden;
}