* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
:root {
  /*--primary-color: #2563eb;*/
  --secondary-color: #1e40af;
  --primary-color: #2679e3;
  /*--secondary-color: #01d4e9;*/
  --text-color: #333;
  --light-bg: #f3f4f6;
}
html {
  scrollbar-width: none;
}
body {
  line-height: 1.6;
  color: var(--text-color);
}
/* Header & Navigation */
header {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  contain: layout paint;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}
.orb,
.shape {
  will-change: transform;
}
.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}
.nomelogo {
  background: #822ecc;
  background: linear-gradient(
    90deg,
    rgba(130, 46, 204, 1) 0%,
    rgba(1, 212, 233, 1) 50%,
    rgba(38, 121, 227, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 0.5rem;
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  margin-left: 2rem;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary-color);
}
/* Hero Section */
.hero {
  background-image: url(/assets/images/banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000000;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}
.hero-content {
  /*max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;*/

  width: 100vw;
  height: 90vh;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  /*border: #3e2ecc 1px solid;
  border-radius: 5px;
  background-color: #3d34b38a;
  box-shadow: #3e2ecc 0px 0px 40px;*/
  box-shadow: #141d3b88 0px 0px 40px;
  background-color: #141d3b88;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: var(--secondary-color);
}
/* Services Section */
.services {
  padding: 5rem 1rem;
  background-color: var(--light-bg);
}
.services h2,
.portfolio h2,
.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
/* Portfolio Section */
.portfolio {
  padding: 5rem 1rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-overlay p {
  margin: 1rem;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
/* FAQ Section */
.faq {
  padding: 5rem 1rem;
  background-color: var(--light-bg);
  height: max-content;
}
.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  /*margin-bottom: 2rem;*/
}
.faq-item {
  max-width: 800px;
  margin: 50px auto 3rem auto;
}
.faq-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
/* Contact Section */
.contact {
  padding: 5rem 1rem;
  /*background-color: var(--light-bg);*/
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact-form input,
#contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}
#contact-form textarea {
  height: 150px;
  resize: none;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.cta-wpp {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}
.cta-insta {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}
/* Footer */
footer {
  background-color: var(--light-bg);
  color: var(--text-color);
  padding: 2rem 1rem;
  position: relative;
}
.footerlogo {
  background: #822ecc;
  background: linear-gradient(
    90deg,
    rgba(130, 46, 204, 1) 0%,
    rgba(1, 212, 233, 1) 50%,
    rgba(38, 121, 227, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  /*display: flex;
  justify-content: space-around;*/
  text-align: center;
  position: relative;
}
.footerlogo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .logo {
    justify-content: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
    /*-webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(
      90deg,
      rgba(230, 140, 140, 1) 0%,
      rgba(173, 80, 173, 1) 35%,
      rgba(76, 0, 255, 1) 100%
    );
    color: transparent;*/
    /*color: #b3b3b9;*/
    font-weight: 700;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footerlogo {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
}
