:root {
  --primary-color: #ffd700;
  --secondary-color: #333;
  --text-color: #fff;
  --background-color: #000;
  --font-family: "Arial", sans-serif;
  --base-font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  font-size: var(--base-font-size);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.desktop {
  display: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--secondary-color);
  height: 120px;
}

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

.header .nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--secondary-color);
  display: none;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  gap: 40px;
}

.header .nav-menu.active {
  display: flex;
}

.header .nav-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.header .nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 32px;
}

.header .close-btn {
  font-size: 50px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-color);
}

.logo {
  width: auto;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
}

.btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
}

.hero-content {
  max-width: 600px;
  text-align: left;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.hero-content .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-content .hero-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-content .btn {
  margin: 32px 0px 0;
  display: inline-block;
  border-radius: 50px;
  font-size: 16px;
  padding: 12px 20px;
}

.hero-image img {
  width: 100%;
}

/* About Section */
.about-container {
  padding: 1rem;
  margin: 0 auto;
}

.about-container h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-section figure {
  width: 100%;
  margin: 0;
}

.about-section figure img {
  width: 100%;
  height: auto;
}

.about-section article {
  width: 100%;
}

.about-section article p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.about-section article .cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.875rem 1.75rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  transition: background-color 0.3s ease;
}

.about-section article .cta-button:hover {
  background-color: var(--primary-color);
}
.about-image {
  width: 100%;
}

/* Services Section */
.services-container {
  padding: 1rem;
  margin: 0 auto;
}

.services-container h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.service-card {
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.service-card h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}

/* Features Section */
.features-container {
  padding: 1rem;
  margin: 0 auto;
  text-align: center;
}

.features-container h1 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: bold;
}

.features-grid {
  display: grid;
  gap: 3rem;
  max-width: 400px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feature-card .icon-container {
  width: 48px;
  height: 48px;
}

.feature-card .icon-container svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 1.125rem;
  margin: 0;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-container {
  padding: 1rem;
  margin: 0 auto;
}

.testimonials-container h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 1.5em;
  opacity: 0.7;
}

.testimonial-card blockquote::after {
  content: '"';
  font-size: 1.5em;
  opacity: 0.7;
}

.testimonial-author {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
}

/* FAQs Section */
.faq-container {
  padding: 1rem;
  margin: 0 auto;
}

.faq-container h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: white;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Footer Section */
.footer-container {
  padding: 2rem 1rem;
  margin: 0 auto;
  background: #696767;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-container .logo {
  width: auto;
  object-fit: cover;
  height: 45px;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

.footer-container .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-container .address {
  margin-top: 2rem;
}

.footer-container .address p:first-child {
  margin-bottom: 0;
}

.footer-container .address p:last-child {
  margin-top: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-container a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-container a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .whatsapp-text-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .whatsapp-text-mobile {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .hero-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem;
  }

  .hero-content {
    width: 45%;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content .hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-content .hero-description {
    font-size: 1.125rem;
  }
  .hero-image {
    width: 45%;
  }

  /* About Section */
  .about-container {
    padding: 1.5rem;
    max-width: 720px;
  }

  .about-container h1 {
    font-size: 2.5rem;
  }

  .about-section article p {
    font-size: 1.125rem;
  }

  /* Services Section */
  .services-container {
    padding: 1.5rem;
    max-width: 720px;
  }

  .services-container h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  /* Features Section */
  .features-container {
    padding: 1.5rem;
  }

  .features-container h1 {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    gap: 4rem 2rem;
  }

  /* Testimonials Section */
  .testimonials-container {
    padding: 1.5rem;
    max-width: 720px;
  }

  .testimonials-container h1 {
    font-size: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .testimonial-card blockquote {
    font-size: 1.125rem;
  }

  /* FAQs Section */
  .faq-container {
    padding: 1.5rem;
    max-width: 720px;
  }

  .faq-container h1 {
    font-size: 2.5rem;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .faq-question {
    font-size: 1.375rem;
  }

  .faq-answer {
    font-size: 1.125rem;
  }

  /* Footer Section */
  .footer-container {
    padding: 3rem 2rem;
    /* max-width: 1400px; */
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-left,
  .footer-right {
    flex: 1;
  }

  .footer-right {
    align-items: flex-end;
    text-align: right;
    justify-content: space-between;
  }

  .footer-social {
    margin-top: 6.3rem;
  }

  .footer-container .logo {
    object-fit: cover;
    width: auto;
  }
}

@media screen and (min-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }

  .hero-content .hero-subtitle {
    font-size: 3;
  }

  .hero-content .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-content .btn {
    font-size: 20px;
    padding: 12px 20px;
  }

  /* About Section */
  .about-container {
    padding: 2rem;
    max-width: 1400px;
  }

  .about-container h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }

  .about-section {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .about-section figure {
    flex: 1;
    min-width: 300px;
  }

  .about-section article {
    width:55%;
  }

  .about-section article p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .about-section article .cta-button {
    padding: 1rem 2rem;
    font-size: 1.25rem;
  }

  .about-image {
    width: 45%;
  }

  /* Services Section */
  .services-container {
    padding: 2rem;
    max-width: 1400px;
  }

  .services-grid {
    width: 70%;
  }

  .services-container h1 {
    font-size: 3.5rem;
  }

  .service-card h2 {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }

  .service-card p {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  /* Features Section */
  .features-container {
    padding: 2rem;
    max-width: 1400px;
  }

  .features-container h1 {
    font-size: 3.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  /* Testimonials Section */
  .testimonials-container {
    padding: 2rem;
    max-width: 1400px;
  }

  .testimonials-container h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .testimonial-card blockquote {
    font-size: 1.25rem;
  }

  .testimonial-author {
    font-size: 1.125rem;
  }

  /* FAQs Section */
  .faq-container {
    padding: 2rem;
    max-width: 1400px;
  }

  .faq-container h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }

  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .faq-question {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=style.min.css.map */