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

body {
  font-family: "Roboto", sans-serif;
  color: #212121;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3caee2;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn:hover {
  background-color: #212b37;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3caee2;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: transparent;
  border: 2px solid #3caee2;
  color: #3caee2;
}
.btn-outline:hover {
  background-color: #212b37;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline:hover {
  background-color: #3caee2;
  color: #ffffff;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #3caee2;
  margin: 15px auto 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}
.header.scrolled {
  background-color: #212b37;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo .logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}
.logo span {
  display: none;
}

.nav-list {
  display: flex;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.header.scrolled .nav-link {
  color: #ffffff;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3caee2;
  transition: all 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.header.scrolled .nav-link:hover {
  color: #3caee2;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header.scrolled .hamburger span {
  background-color: #ffffff;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 43, 55, 0.8);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.hero-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.banner-1 {
  background-image: url("../assets/images/operis-banner-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: rgba(33, 43, 55, 0.97);
  border-radius: 8px;
  padding: 0;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card h3 {
  color: #ffffff;
}
.service-card p {
  color: #ffffff;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-card .service-content {
  padding: 30px;
  flex-grow: 1;
}
.service-card .service-footer {
  padding: 0 30px 30px;
  margin-top: auto;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.service-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.about-preview {
  background-color: #f5f5f5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 11/5;
}
.about-image img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  left: 0;
}
.about-image img:hover {
  transform: scale(1.05);
}

.features-list {
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature i {
  font-size: 1.5rem;
  color: #212b37;
  margin-right: 15px;
  flex-shrink: 0;
}

.cta-section {
  background-color: #212b37;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 {
  margin-bottom: 20px;
}
.cta-section p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.footer {
  background-color: #212121;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 20px;
  color: #ffffff;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li i {
  margin-right: 10px;
  color: #3caee2;
}
.footer-section a:hover {
  color: #3caee2;
}
.footer-section img {
  border-radius: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header {
  background-color: #212b37;
  color: #ffffff;
  padding: 120px 0 60px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.values-section {
  margin: 60px 0;
}

.about-history {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 5/6;
}
.about-history img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: rgba(33, 43, 55, 0.05);
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(33, 43, 55, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.value-icon i {
  font-size: 1.8rem;
  color: #212b37;
}

.team-section {
  background-color: #f5f5f5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 250px;
  overflow: hidden;
}
.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.member-image img:hover {
  transform: scale(1.1);
}

.team-member h3 {
  margin-top: 20px;
}

.position {
  color: #212b37;
  font-weight: 500;
  margin-bottom: 15px;
}

.description {
  padding: 0 20px 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}
.service-detail.reverse {
  direction: rtl;
}
.service-detail.reverse > * {
  direction: ltr;
}

.service-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}
.service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.service-image img:hover {
  transform: scale(1.05);
}

.service-text ul {
  margin: 20px 0;
}
.service-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.service-text ul li i {
  color: #3caee2;
  margin-right: 10px;
}

.process-section {
  background-color: #f5f5f5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.process-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #212b37;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #212b37;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-details {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-text h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(#212121);
}
.contact-text p {
  margin-bottom: 0;
  line-height: 1.4;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(33, 43, 55, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.contact-icon i {
  font-size: 1.2rem;
  color: #212b37;
}

.social-links {
  margin-top: 40px;
}
.social-links h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #212b37;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: #3caee2;
  transform: translateY(-3px);
}

.contact-form {
  background-color: rgba(33, 43, 55, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-success {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}
.form-success.active {
  display: block;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #212b37;
  box-shadow: 0 0 0 2px rgba(33, 43, 55, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.map-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section {
  background-color: #ffffff;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}
.faq-question i {
  transition: all 0.3s ease;
}
.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.active {
  padding: 20px;
  max-height: 300px;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .about-content,
  .about-detail,
  .contact-content,
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail.reverse {
    direction: ltr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-list.active {
    right: 0;
  }
  .nav-item {
    margin: 15px 0;
  }
  .nav-link {
    color: #212121;
    font-size: 1.2rem;
  }
  .logo .logo-img {
    height: 35px;
  }
  .hamburger {
    display: block;
    z-index: 1001;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=main.css.map */