@font-face {
  font-family: 'Inter';
  src: url('../font/inter.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-color: #ffffff;
  --text-color: #1e293b;
  --accent-blue: #2563eb;
  --accent-orange: #f97316;
  --accent-primary: #2563eb;

  --accent-red: #dc2626;
  --accent-red-hover: #b91c1c;
  --industrial-gray: #4b5563;
  --industrial-gray-light: #9ca3af;
  --product-blue: #3b82f6;
  --product-blue-dark: #2563eb;

  --nav-bg: #ffffff;
  --card-bg: #f8fafc;
  --border-light: #e2e8f0;
  --shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
  --section-bg-alt: #f1f5f9;
}

[data-theme="dark"] {
  --bg-color: #0f172a;
  --text-color: #e2e8f0;
  --accent-blue: #3b82f6;
  --accent-orange: #fb923c;
  --accent-primary: #3b82f6;

  --accent-red: #ef4444;
  --accent-red-hover: #dc2626;
  --industrial-gray: #9ca3af;
  --industrial-gray-light: #d1d5db;
  --product-blue: #60a5fa;
  --product-blue-dark: #3b82f6;

  --nav-bg: #1e293b;
  --card-bg: #1e293b;
  --border-light: #273344;
  --shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  --section-bg-alt: #1e293b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.2s ease;
}

@media screen and (max-width: 768px) {
  h2 {
    line-height: 48px !important;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

section#home {
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  section#home {
    padding-top: 80px;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.accent {
  color: var(--accent-red) !important;
}

/* Navbar - same as before but with new colors */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--nav-bg);
  transition: all 0.3s ease-in-out;
  height: 80px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.09);
  user-select: none;
}

@media (min-width: 769px) {
  .navbar.small {
    height: 60px !important; 
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 60px;
  }
}

.navbar.scroll-down {
  background-color: rgba(from var(--nav-bg) r g b / 0.8);
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .navbar.scroll-down {
    background-color: var(--nav-bg);
  }
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.3rem;
  }

  .logo {
    font-size: 1rem;
  }
}

.logo .accent {
  color: var(--accent-red) !important;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

.nav-menu li a, .theme-toggle {
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.2s;
  white-space: nowrap;
  font-size: 0.95rem;
}

.theme-toggle {
  background: var(--accent-red) !important;
}

@media screen and (max-width: 768px) {
  .nav-menu li a {
    padding: 5px 40px;
  }

  .nav-menu li:first-of-type {
    margin-top: -160px;
  }
}

.nav-menu li a:hover {
  color: var(--accent-red) !important;
}

.theme-toggle {
  background: var(--accent-primary);
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.95rem;
  transition: 0.15s;
}

.theme-toggle:hover {
  opacity: 0.9;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--section-bg-alt) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.hero-tagline {
  display: inline-block;
  background: var(--accent-red) !important;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.headline {
  font-size: 3.3rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--accent-red) !important;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.3) !important;
}

.btn-primary:hover {
  background: var(--accent-red-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -8px rgba(220, 38, 38, 0.4) !important;
}

.btn-outline {
  border-color: var(--accent-red) !important;
  color: var(--accent-red) !important;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent-red) !important;
  color: white !important;
  transform: translateY(-2px);
}

/* Hero Collage - Mosaic Layout */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.8rem;
  height: 550px;
  width: 100%;
  position: relative;
}

.mosaic-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.1, 1);
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

.item1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-radius: 50% 10px 10px 10px;
}

.item2 {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.item3 {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.item4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.item5 {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
}

.item6 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

/* Overlay subtle gradient on hover */
.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mosaic-item:hover::after {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mosaic-grid {
    height: 400px;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .mosaic-grid {
    height: 300px;
    gap: 0.4rem;
  }
}

/* Stats Bar */
.stats-bar {
  background: var(--accent-red) !important;
  color: white;
  padding: 3rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* About Section with Image Grid */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.vertical-item {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vertical-item:first-child {
  flex: 1.5;
}

.image-grid-horizontal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.horizontal-item {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature i {
  font-size: 1.5rem;
  color: white;
  background: var(--accent-red) !important;
  padding: 1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.3) !important;
  transition: all 0.3s ease;
}

.about-feature:hover i {
  transform: scale(1.1) rotate(10deg);
  filter: brightness(0.9);
}

.about-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
}

/* Services Modern Grid */
.services-section {
  background: var(--section-bg-alt);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-modern {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--product-blue)) !important;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
  transform: translateX(0);
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.3);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-red), var(--product-blue)) !important;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.product-card {
  border-top-style: solid;
}

/* Specs Table */
.specs-table {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.spec-item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border-light);
}

.spec-label {
  font-size: 0.85rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--product-blue);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.service-card-modern h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-modern p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.card-link {
  color: var(--accent-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 1rem;
}

/* Work/Portfolio Grid with Varied Sizes */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.work-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.work-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item-tall {
  grid-row: span 2;
}

.work-item-wide {
  grid-column: span 2;
}

.work-item img {
  transition: transform 0.8s ease;
  width: 100%;
  height: 100%;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-category {
  display: inline-block;
  background: var(--accent-red) !important;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.work-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Insights Section */
.insights-section {
  background: var(--section-bg-alt);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.insight-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
}

.insight-image {
  height: 200px;
  overflow: hidden;
}

.insight-image img {
  transition: transform 0.6s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.1);
}

.insight-content {
  padding: 2rem;
}

.insight-date {
  color: var(--accent-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insight-content h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
}

.insight-link {
  color: var(--accent-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-light);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-image {
  height: 280px;
  overflow: hidden;
}

.team-image img {
  transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-card h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.3rem;
}

.team-position {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  font-size: 0.95rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--section-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--accent-primary);
  color: white;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  color: white;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card i {
  font-size: 2.5rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-author p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Location & Contact Combined */
.location-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.leaflet-map {
  height: 450px;
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--accent-red) !important;
  background: rgba(220, 38, 38, 0.1) !important;
  padding: 1rem;
  border-radius: 16px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.btn-large {
  padding: 1rem 2rem;
  width: 100%;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1.5rem 0;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--section-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-primary);
  color: white;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-red) !important;
  opacity: 1;
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 50px 0 0 50px;
  outline: none;
}

.newsletter-form button {
  padding: 0 1.5rem;
  background: var(--accent-primary);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2rem 0 1.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .about-layout,
  .location-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .collage-mosaic {
    height: 400px;
    margin-top: 2rem;
  }
  
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger { 
    display: block; 
  }
  
  .nav-menu {
    position: fixed;
    top: 60px; left: 0; width: 100vw; height: calc(100vh - 60px);
    background: var(--nav-bg);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: 0.4s cubic-bezier(0.2, 0.9, 0.1, 1);
    backdrop-filter: blur(8px);
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .headline {
    font-size: 2.5rem;
    line-height: 38px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .services-grid-modern,
  .insights-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    height: 400px;
  }

  .image-grid-horizontal, .image-grid-vertical, .about-images {
    gap: 10px;
  }

  .vertical-item, .horizontal-item {
    border-radius: 10px;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  
  .work-item-large,
  .work-item-tall,
  .work-item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section { 
    padding: 4rem 0; 
  }
  
  .headline { 
    font-size: 2rem; 
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .collage-mosaic {
    height: 300px;
  }
  
  .about-images {
    height: 330px;
  }
}

/* Animation */
.fade-in-up {
  opacity: 0.2;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.1, 1), transform 0.7s ease-in-out;
}

.fade-in-up-visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-marker {
  background: transparent !important;
  border: none !important;
}

.custom-marker i {
  color: var(--accent-red) !important;
}

@media (max-width: 768px) {
  .force-width-padding-0 {
    padding: 0 !important;
  }
}