/* CSS Variables */
:root {
  /* Brutalist Monochrome Color Scheme */
  --primary-color: #1a1a1a;
  --primary-color-dark: #000000;
  --primary-color-light: #333333;
  --accent-color: #4a4a4a;
  --text-color: #212121;
  --text-color-light: #757575;
  --background-color: #ffffff;
  --background-color-alt: #f5f5f5;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #4CAF50;
  --error-color: #F44336;
  
  /* Typography */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius: 4px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Base Styles */
html, body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

p {
  margin-bottom: var(--spacing-md);
}

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

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

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

/* Brutalist Typography */
.title {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.subtitle {
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Responsive Typography */
@media screen and (min-width: 768px) {
  .title.is-1 {
    font-size: 3.5rem;
  }
  
  .title.is-2 {
    font-size: 2.8rem;
  }
  
  .subtitle.is-3 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .subtitle.is-3 {
    font-size: 1.75rem;
  }
  
  .is-size-5 {
    font-size: 1.1rem !important;
  }
}

/* Navigation */
.navbar {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px var(--shadow-color);

  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-medium);
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  position: relative;
}

.navbar-item:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.navbar-item:hover:after {
  width: 100%;
}

.navbar-burger {
  color: var(--primary-color);
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  background-color: var(--primary-color);
  height: 2px;
}

/* Button Styles */
.button {
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width var(--transition-medium);
  z-index: -1;
}

.button:hover:before {
  width: 100%;
}

.button.is-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

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

.button.is-light {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

.button.is-light:hover {
  background-color: var(--background-color-alt);
  border-color: var(--background-color-alt);
}

.button.is-large {
  font-size: 1.25rem;
  height: 3.25rem;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
 
}

.hero-body {
  padding: var(--spacing-xl) var(--spacing-sm);
  z-index: 1;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
  animation: fadeInOut 2s infinite;
}

.hero-scroll-indicator .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin-top: 10px;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* About Section */
#about {
  padding: var(--spacing-xl) var(--spacing-sm);
}

.card {
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow-color);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

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

/* Success Stories Section */
#success-stories {
  padding: var(--spacing-xl) var(--spacing-sm);
}

.success-stories-carousel {
  position: relative;
  margin-top: var(--spacing-md);
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.carousel-item.is-active {
  display: block;
  opacity: 1;
}

.image-container {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-md);
}

.carousel-dots {
  display: flex;
  margin: 0 var(--spacing-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.is-active {
  background-color: var(--primary-color);
}

/* Media Section */
#media {
  padding: var(--spacing-xl) var(--spacing-sm);
}

.methodology-steps {
  display: flex;
  flex-direction: column;
}

.methodology-step {
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-left: var(--spacing-md);
  border-left: 2px solid var(--primary-color);
}

.methodology-step:last-child {
  margin-bottom: 0;
}

.methodology-step h3 {
  margin-bottom: var(--spacing-xs);
}

/* Portfolio/Resources Section */
#portfolio {
  padding: var(--spacing-xl) var(--spacing-sm);
}

/* Customer Stories Section */
#customer-stories {
  padding: var(--spacing-xl) var(--spacing-sm);
}

.story-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px var(--shadow-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--transition-fast);
  height: 100%;
}

.story-card:hover {
  transform: translateY(-10px);
}

.story-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.story-content {
  padding: var(--spacing-md);
  flex-grow: 1;
}

/* Projects Section */
#projects {
  padding: var(--spacing-xl) var(--spacing-sm);
}

.project-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px var(--shadow-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.project-content {
  padding: var(--spacing-md);
  flex-grow: 1;
}

/* Contact Section */
#contact {
  padding: var(--spacing-xl) var(--spacing-sm);
}

.contact-info .info-item {
  margin-bottom: var(--spacing-md);
}

.contact-info .info-item h3 {
  margin-bottom: var(--spacing-xs);
}

.office-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form {
  background-color: var(--background-color);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow-color);
}

.field {
  margin-bottom: var(--spacing-md);
}

.input, .textarea {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-fast);
}

.input:focus, .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
}

/* Footer Section */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-xl) var(--spacing-sm);
}

.footer .title {
  color: white;
  margin-bottom: var(--spacing-md);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

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

.footer-social li {
  margin-bottom: var(--spacing-xs);
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

.footer-social 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;
}

.footer-social a[href*="facebook"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255, 255, 255, 0.7)'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3 5.5h-1.5c-.55 0-1 .45-1 1v1.5h2.5L14.5 12h-2v5h-2v-5H9V10h1.5V8c0-1.1.9-2 2-2H15v1.5z'/%3E%3C/svg%3E");
}

.footer-social a[href*="twitter"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255, 255, 255, 0.7)'%3E%3Cpath d='M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z'/%3E%3C/svg%3E");
}

.footer-social a[href*="instagram"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255, 255, 255, 0.7)'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
}

.footer-social a[href*="linkedin"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255, 255, 255, 0.7)'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
}

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

/* Success, Privacy, Terms Pages */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

/* Animation Classes */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.animate-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  
  .column {
    padding: 0.75rem;
  }
  
  .hero-body {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
  
  .section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
  
  .card, .story-card, .project-card {
    margin-bottom: var(--spacing-md);
  }
  
  .methodology-step {
    padding-left: var(--spacing-sm);
  }
  
  .image-container {
    max-width: 200px;
    height: 200px;
  }
  
  .carousel-item .columns {
    flex-direction: column;
  }
  
  .carousel-item .column {
    width: 100%;
  }
}

/* Special Utilities */
.read-more-link {
  display: inline-block;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
  transition: color var(--transition-fast);
}

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

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

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

/* Brutalist Design Elements */
.brutalist-border {
  border: 4px solid var(--primary-color);
  padding: var(--spacing-md);
  position: relative;
}

.brutalist-border:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent-color);
  z-index: -1;
}

/* Morphing Animations */
@keyframes morphShape {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.morph-shape {
  animation: morphShape 8s ease-in-out infinite;
}

*{
  opacity: 1 !important;
}
body{
  padding-top: 0 !important;
}