/* Base Styles */

:root {
  --primary: #f4a460;
  --primary-dark: #e38d4a;
  --primary-light: #fef3c7;
  --secondary: #f0f9ff;
  --text: #0f172a;
  --text-light: #64748b;
  --background: #ffffff;
  --background-light: #f8fafc;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --yellow: #fbbf24;
  --yellow-light: #fef3c7;
  --blue: #3b82f6;
  --blue-light: #dbeafe;
  --green: #f4a460;
  --green-light: #fef3c7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
  "Helvetica Neue", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background-color: var(--background);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.min-h-screen {
  min-height: 100vh;
}

.text-center {
  text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-description,
.section-description {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.sun-icon {
  color: var(--yellow);
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex: 1;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-cta {
  padding: 1rem;
  border-top: 1px solid var(--border);
}

/* Buttons */
.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary,
a.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover,
a.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-green,
a.btn-green {
  background-color: var(--green);
  color: white;
}

.btn-green:hover,
a.btn-green:hover {
  background-color: var(--primary-dark);
}

.btn-white,
a.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover,
a.btn-white:hover {
  background-color: var(--background-light);
}

.btn-outline,
a.btn-outline {
  background-color: transparent;
  border-color: var(--border-dark);
  color: var(--text);
}

.btn-outline:hover,
a.btn-outline:hover {
  background-color: var(--background-light);
}

.btn-lg,
a.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-sm,
a.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.btn-full,
a.btn-full {
  width: 100%;
}

.icon-right {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* Menu toggle button */
a.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
}
.menu-toggle:focus {
  outline: none;
  box-shadow: none;
}
.menu-toggle {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
/* Sections */
section {
  padding: 3rem 0;
}

.hero-section {
  background: linear-gradient(to bottom, white, var(--blue-light));
  padding: 4rem 0;
}

.about-hero-section {
  background-color: var(--green-light);
  padding: 4rem 0;
}

.services-hero-section {
  background-color: var(--blue-light);
  padding: 4rem 0;
}

.projects-hero-section {
  background-color: var(--yellow-light);
  padding: 4rem 0;
}

.contact-hero-section {
  background-color: var(--green-light);
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.badge {
  display: inline-block;
  background-color: var(--green-light);
  color: var(--green);
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.bg-light {
  background-color: var(--background-light);
}

/* Hero Grid */
.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rounded-image {
  border-radius: 0.75rem;
  overflow: hidden;
  object-fit: cover;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
  background-color: var(--green-light);
  color: var(--green);
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--text-light);
}

/* Services Section */
.services-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-content {
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.link-with-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
}

.link-with-arrow .icon-right {
  transition: transform 0.2s;
}

.link-with-arrow:hover .icon-right {
  transform: translateX(3px);
}

/* CTA Section */
.cta-section {
  background-color: var(--green);
  color: white;
  padding: 4rem 0;
}
.cta-section1 {
  background-color: var(--background);
  color: black;
  padding: 4rem 0;
}

.cta-grid {
  display: grid;
  gap: 2rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-description {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

/* About Page */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 2rem;
}

.about-section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.values-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: var(--text-light);
}

.values-list li {
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-grid {
  display: grid;
  gap: 2rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member-image {
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-member-position {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Services Page */
.service-detail-grid {
  display: grid;
  gap: 2rem;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-detail-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-list {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

/* Projects Page */
.projects-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tab-button {
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.tab-button:hover {
  background-color: var(--background-light);
}

.tab-button.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.projects-grid {
  display: grid;
  gap: 2rem;
}

.project-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.project-image {
  position: relative;
  aspect-ratio: 16 / 9;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: var(--green);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.project-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-size {
  font-size: 0.875rem;
  color: var(--text-light);
}

.project-size-label {
  font-weight: 500;
}

/* Contact Page */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: var(--text-light);
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.contact-card-icon {
  background-color: var(--green-light);
  color: var(--green);
  padding: 0.75rem;
  border-radius: 9999px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-card-text {
  color: var(--text-light);
}

.contact-map {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Styles */
.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.radio-group {
  display: grid;
  gap: 0.5rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-label {
  font-weight: normal;
}

/* Toast Notification */
/* Toast notification styles */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  min-width: 280px;
  max-width: 350px;
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #2F855A;
}

.toast.error .toast-title {
  color: #E53E3E;
}

.toast-message {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.5;
}

/* Form status (for non-JS fallback) */
.form-status {
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 6px;
  display: none;
}

.form-status.success {
  background-color: #F0FFF4;
  border: 1px solid #C6F6D5;
  color: #2F855A;
}

.form-status.error {
  background-color: #FFF5F5;
  border: 1px solid #FED7D7;
  color: #E53E3E;
}
@media (max-width: 639px) {
  .tabs-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between buttons on mobile */
    padding: 0 20px; /* Add some horizontal padding */
  }
  
  .btn-lg {
    width: 100%; /* Make buttons full width on mobile */
    margin: 0; /* Remove any existing margins */
  }
}
/* Mobile styles (default) */
.tabs-container {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between buttons on mobile */
  align-items: center;
  margin: 40px auto;
  padding: 0 20px;
}

.tabs-container .btn-lg {
  width: 100%; /* Full width on mobile */
}

/* Desktop styles */
@media (min-width: 640px) {
  .tabs-container {
    flex-direction: row;
    justify-content: center;
    gap: 20px; /* Space between buttons on desktop */
  }
  
  .tabs-container .btn-lg {
    width: auto; /* Auto width on desktop */
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: row;
  }
  
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .cta-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid.reverse .service-detail-image {
    order: 2;
  }

  .service-detail-grid.reverse .service-detail-content {
    order: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  section {
    padding: 5rem 0;
  }
  
}

  .hero-section,
  .about-hero-section,
  .services-hero-section,
  .projects-hero-section,
  .contact-hero-section,
  .cta-section {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}
.tab-btn {
  margin: 0 10px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: #ff5722;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}