/* Theme variables */
:root {
  color-scheme: light;

  /* Light theme (default) */
  --background-color: #ffffff;
  --text-color: #333333;
  --primary-color: #3498db;
  --secondary-color: orange;
  --footer-bg: #f5f5f5;
  --footer-text: #666666;
  --input-bg: #ffffff;
  --input-border: #dddddd;
  --nav-bg: #ffffff;
  --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

:root[style*="color-scheme: dark"],
html[data-theme="dark"] {
  --background-color: #121212;
  --text-color: #ffffff;
  --primary-color: #3498db;
  --secondary-color: orange;
  --footer-bg: #1a1a1a;
  --footer-text: #b3b3b3;
  --input-bg: #2a2a2a;
  --input-border: #333333;
  --nav-bg: #ffffff;
  --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  box-shadow: var(--nav-shadow);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 1rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--secondary-color);
}

/* Mobile navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--nav-bg);
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--nav-shadow);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.5rem 0;
    width: 100%;
    justify-content: center;
  }
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 72px;
}

/* Footer styles */
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 0 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-section p {
  line-height: 1.6;
  color: var(--footer-text);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.social-links a {
  color: #b3b3b3;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: orange;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.8rem;
  border: 1px solid var(--input-border);
  border-radius: 4px;
  background-color: var(--input-bg);
  color: var(--text-color);
  flex: 1;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.subscribe-btn {
  padding: 0.8rem 1.2rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #2980b9;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  background-color: #121212;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .subscribe-btn {
    width: 100%;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: orange;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #ffffff;
  color: orange;
  border: 1px solid orange;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Font settings */
:root {
  --font-primary: "Ubuntu", -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font weight utilities */
.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

/* Header and Navigation */
.header {
  background-color: #ffffff70;
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #10161c;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: orange;
}

/* Hero Section with Slideshow */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: white;
  z-index: 1;
}

.slideshow-container {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  border: none;
  cursor: pointer;
  z-index: 3;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dots Navigation */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
  background-color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
}

.slide {
  height: 100%;
  width: 100%;
  position: absolute;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.5);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c0392b;
}

/* Features/Services Section */
.features {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.5rem;
}

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

.service-category {
  margin-bottom: 4rem;
}

.category-title {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.category-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: orange;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid orange;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  text-align: left;
  width: 100%;
  padding: 0;
  margin-top: auto;
}

.service-list li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.service-list li:before {
  content: "✓";
  color: orange;
  position: absolute;
  left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features {
    padding: 3rem 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

/* About Section */
.about {
  padding: 5rem 2rem;
  background-color: white;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  color: #2c3e50;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.about h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: orange;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mission-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.mission-block p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.why-us-block h3,
.expertise-block h3,
.mission-block h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(238, 166, 65, 0.327);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

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

.expertise-column {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.expertise-column h4 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: center;
}

.expertise-column ul {
  list-style: none;
  padding: 0;
}

.expertise-column ul li {
  padding: 0.8rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid #eee;
}

.expertise-column ul li:last-child {
  border-bottom: none;
}

.expertise-column ul li:before {
  content: "→";
  color: orange;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about {
    padding: 3rem 1rem;
  }

  .mission-block p {
    font-size: 1.1rem;
  }

  .benefits-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .why-us-block h3,
  .expertise-block h3,
  .mission-block h3 {
    font-size: 1.5rem;
  }
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Contact Info Styles */
.contact-info {
  padding: 2rem;
  background: linear-gradient(135deg, orange, #121212);
  color: white;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.contact-icon {
  font-size: 1.8rem;
  margin-right: 1rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-details p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: bold;
}

.business-hours {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-hours h3 {
  margin-bottom: 1rem;
}

.business-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Contact Form Styles */
.contact-form-container {
  padding: 2rem;
}

.contact-form-container h3 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .back-to-top:hover {
    background-color: #2980b9;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .back-to-top {
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  }
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3498db;
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  padding: 1rem;
  background-color: orange;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.submit-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.submit-button i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact {
    padding: 3rem 1rem;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .contact-method:hover {
    transform: none;
  }
}
span {
  color: orange;
}

/* WhatsApp specific color */
.contact-method.whatsapp .contact-icon {
  background: #25d366;
}

/* Email specific color */
.contact-method.email .contact-icon {
  background: #ea4335;
}

/* Phone specific color */
.contact-method.phone .contact-icon {
  background: #4caf50;
}

/* Footer */
.footer {
  background-color: #121212;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.how-it-works h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background-color: #f9f9f9;
  padding: 2.5rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid orange;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: orange;
  margin-bottom: 1rem;
  background-color: #fbf3e8;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid orange;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.step-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
}

.step-card p {
  color: #555;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .how-it-works h2 {
    font-size: 2rem;
  }
}
