﻿:root {
  --primary-color: #0040ff;
  --secondary-color: #f5f5f5;
  --dark-color: #333333;
  --light-gray: rgba(196, 196, 196, 0.13);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.6;
  color: var(--dark-color);
}

.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}


/* HEADER */
.top-bar {
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  background: var(--dark-color);
}

.navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: var(--primary-color) !important;
  font-size: 24px;
  font-weight: bold;
}

.navbar-nav .nav-link {
  color: var(--dark-color) !important;
  margin: 0 15px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}


/* -- BUTTONS -- */
.btn-primary-custom {
  border: none;
  margin: 0 10px;
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  background: #6d7a8b;
}

.btn-outline-custom {
  color: #ffffff;
  border: 2px solid white;
  margin: 0 10px;
  display: inline-block;
  padding: 10px 30px;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.btn-outline-custom:hover {
  color: var(--dark-color);
  background: white;
}

.btn-service {
  width: 100%;
  color: #ffffff!important;
  border: none;
  padding: 12px 30px;
  display: inline-block;
  text-align: center;
  background: var(--primary-color);
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
}

.btn-service:hover {
  color: #ffffff;
  background: #e68900;
  transform: translateY(-2px);
}


/* -- HERO SECTION / HOME PAGE -- */
.hero-alt {
  color: white;
  padding: 2rem 0;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  align-items: center;
  background: var(--secondary-color);
}

.hero-alt-grid {
  gap: 2rem;
  height: calc(100vh - 4rem);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  max-width: 1400px;
  grid-template-columns: 1fr 1fr;
}

.hero-alt-content {
  display: flex;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
}

.hero-alt-content h1 {
  color: var(--primary-color);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-alt-content h2 {
  color: var(--dark-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero-alt-content p {
  color: #666666;
  max-width: 500px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-alt-buttons {
  gap: 1rem;
  display: flex;
  margin-bottom: 3rem;
}

.btn-alt-primary,
.btn-alt-secondary {
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.btn-alt-primary {
  color: #ffffff;
  background: var(--primary-color);
}

.btn-alt-secondary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
}

.btn-alt-primary:hover,
.btn-alt-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-alt-stats {
  gap: 2rem;
  display: flex;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  color: #666666;
  font-size: 0.9rem;
}

.hero-alt-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(45deg, rgba(0, 64, 255, 0.2), transparent);
  border-radius: 20px;
}


/* SERVICES SECTION */
.services-section {
  padding: 80px 0;
  background: white;
}

.service-card {
  height: 100%;
  padding: 30px 20px;
  text-align: center;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-radius: 10px;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 100%;
  height: 200px;
  color: var(--primary-color);
  display: flex;
  font-size: 48px;
  background: var(--light-gray);
  align-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  justify-content: center;
}

.service-card h4 {
  color: var(--dark-color);
  font-weight: bold;
  margin-bottom: 15px;
}


/* -- SERVICE CARDS -- */
.service-card {
  height: 100%;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  color: #999999;
  height: 250px;
  display: flex;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  background: var(--light-gray);
  align-items: center;
  justify-content: center;
}

.service-image i {
  color: var(--primary-color);
  font-size: 80px;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.service-content p {
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  color: #666;
  padding: 10px 0;
  position: relative;
  text-align: left;
  padding-left: 25px;
  border-bottom: 1px solid #eeeeee;
}

.service-features li:before {
  left: 0;
  top: 12px;
  color: var(--primary-color);
  content: '\f013';
  position: absolute;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}


/* -- SUCCESS SECTION -- */
.success-section {
  padding: 80px 0;
  background: var(--secondary-color);
}

.success-section h2 {
  color: var(--dark-color);
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

.success-grid {
  gap: 20px;
  margin: 0 auto;
  display: grid;
  max-width: 1200px;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(3, 1fr);
}

.success-item {
  overflow: hidden;
  position: relative;
  background: var(--light-gray);
  border-radius: 10px;
}

.success-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.success-item .overlay {

  top: 0;
  left: 0;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  padding: 20px;
  position: absolute;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.success-item:hover .overlay {
  opacity: 1;
}

.success-item:hover img {
  filter: blur(3px);
  transform: scale(1.05);
}

.overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1rem;
  line-height: 1.4;
}

.success-item.large {
  grid-row: span 2;
}

.success-item.wide {
  grid-column: span 2;
}


/* -- PROCESS SECTIN -- */
.process-section {
  padding: 80px 0;
}

.process-section h2 {
  color: var(--dark-color);
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

.process-step {
  padding: 0px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.process-number {
  color: white;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  font-size: 24px;
  background: var(--primary-color);
  font-weight: bold;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}

.process-icon {
  color: var(--primary-color);
  font-size: 40px;
  margin-bottom: 15px;
}

.process-step h4 {
  color: var(--dark-color);
  font-weight: bold;
  margin-bottom: 10px;
}


/* -- CAPABILITIES SECTION -- */
.capabilities-section {
  padding: 80px 0;
  background: var(--secondary-color);
}

.capability-card {
  height: 100%;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.capability-card:hover {
  transform: translateY(-5px);
}

.capability-icon {
  color: var(--primary-color);
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.capability-card h4 {
  color: var(--dark-color);
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.capability-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  color: #666666;
  padding: 10px 0;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid #eeeeee;
}

.capability-list li:before {
  left: 0;
  color: var(--primary-color);
  content: '✓';
  position: absolute;
  font-size: 1.2em;
  font-weight: bold;
}


/*  -- PAGE HEADERS -- */
.page-header {
  padding: 80px 0;
  background: var(--secondary-color);
  text-align: center;
}

.page-header h1 {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}


/* -- CONTENT SECTIONS -- */
.content-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--dark-color);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-title p {
  color: #666666;
  margin: 0 auto;
  font-size: 1.1rem;
  max-width: 600px;
}

/* Company Story Section */
.story-section {
  background: white;
}

.story-content {
  gap: 50px;
  display: flex;
  align-items: center;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

p.story-text {
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 20px;
}


/* -- VALUES SECTION -- */
.values-section {
  background: var(--secondary-color);
}

.value-card {
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  background: #ffffff;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h4 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}


/* -- GALLERY STYLES -- */
.gallery-container {
  padding: 60px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  border-radius: 10px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  left: 0;
  right: 0;
  color: #ffffff;
  bottom: 0;
  padding: 15px;
  opacity: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
}

.close-lightbox {
  top: 20px;
  right: 20px;
  color: white;
  cursor: pointer;
  position: absolute;
  font-size: 30px;
}


/* -- CONTACT SECTION -- */
.contact-info {
  padding: 80px 0;
}

.contact-card {
  height: 100%;
  padding: 30px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-form {
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.form-control {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.btn-submit {
  color: #ffffff!important;
  border: none;
  padding: 12px 30px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 5px;
}

.btn-submit:hover {
  color: #ffffff!important;
  transform: translateY(-2px);
  background: rgb(0, 51, 204);
}

.response {
  margin-top: 20px;
  text-align: center !important;
}

.map-container {
  height: 400px;
  overflow: hidden;
  margin-top: 40px;
  border-radius: 10px;
}

a:link, a:visited { color: var(--dark-color); text-decoration: none;}
a:hover, a:active { color: var(--primary-color)}


/* -- FOOTER -- */
.footer {
  color: white;
  padding: 40px 0 20px;
  margin-top: 1px;
  background: var(--dark-color);
}

.footer h5 {
  letter-spacing: 1px;
}

.footer p {
  font-size: 12px;
  letter-spacing: 1px;
}

.social-links a {
  color: var(--secondary-color)
}

.social-links a:hover {
  color: var(--primary-color)
}


/* -- RESPONSIVE DESIGN -- */
@media (max-width: 1200px) {
  .hero-alt-content h1 {
    font-size: 3rem;
  }

  .hero-alt-content h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .hero-alt {
    padding: 1rem 0;
  }

  .hero-alt-grid {
    gap: 1rem;
    padding: 0 1rem;
  }

  .hero-alt-content {
    padding: 1rem;
  }

  .hero-alt-content h1 {
    font-size: 2.5rem;
  }

  .hero-alt-content h2 {
    font-size: 1.5rem;
  }

  .hero-alt-content p {
    font-size: 1rem;
  }

  .btn-alt-primary,
  .btn-alt-secondary {
    padding: 0.8rem 1.5rem;
  }

  .hero-alt-stats {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-header h1,
  .gallery-header h1 {
    font-size: 2rem;
  }

  .contact-info {
    padding: 40px 0;
  }

  .contact-card {
    margin-bottom: 30px;
  }

  .map-container {
    height: 300px;
  }

  .hero-alt {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-alt-grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero-alt-content {
    order: 2;
    text-align: center;
  }

  .hero-alt-content p {
    margin: 0 auto 2rem auto;
  }

  .hero-alt-buttons {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-alt-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-alt-image {
    order: 1;
    height: 300px;
  }

  .capability-card {
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .success-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .success-item.large,
  .success-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .pdf-frame {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-alt-content h1 {
    font-size: 2rem;
  }

  .hero-alt-content h2 {
    font-size: 1.2rem;
  }

  .hero-alt-content p {
    font-size: 0.9rem;
  }

  .btn-alt-primary,
  .btn-alt-secondary {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .hero-alt-stats {
    align-items: center;
    flex-direction: column;
  }

  .stat-item {
    text-align: center;
    margin-bottom: 1rem;
  }

  .hero-alt-image {
    height: 250px;
  }
}

