/* ===== Font Loading ===== */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  font-display: swap;
}

/* ===== Reset & Base Styles ===== */
:root {
  --primary: #A8D5BA;
  --primary-dark: #6BBF8A;
  --primary-darker: #4B9B6E;
  --primary-darkest: #2E7D5C;
  --accent: #1B5E3A;
  --text: #333;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  line-height: 1.6;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ===== Header Styles ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--accent);
  box-shadow: var(--shadow);
  height: 70px;
}

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

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-icon {
  height: 40px;
  width: auto;
  margin-right: 0;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.logo-text-2 {
  color: var(--white);
  display: inline-block;
  letter-spacing: -0.02em;
}

/* ===== Navigation Styles ===== */
.nav {
  display: flex;
  align-items: center;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
}

.nav a:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.nav a.active {
  background-color: var(--primary-dark);
  color: var(--white);
}

.nav a.active:hover {
  background-color: var(--primary-darker);
}

.nav a i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  width: 1.1rem;
  text-align: center;
}

.nav a span {
  display: inline-block;
  line-height: 1;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .header-content {
    padding: 0 1.5rem;
    height: 70px;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .logo a {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav a {
    padding: 0.75rem 1rem;
  }

  .logo-icon {
    height: 35px;
  }

  .logo-text {
    font-size: 1.75rem;
  }
}

/* ===== Main Content Styles ===== */
main {
  padding-top: 100px;
  min-height: calc(100vh - 70px - 300px); /* viewport height - header - footer */
}

/* ===== Home Section Styles ===== */
.home {
  padding: 120px 2rem 4rem;
  background-color: var(--gray-light);
}

.home-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.home-text h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.home-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.home-buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.service-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-button:hover {
  background-color: var(--primary-darker);
  transform: translateY(-2px);
}

/* ===== Main Content Styles ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  margin-bottom: 4rem;
}

.section h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section h2 i {
  color: var(--primary-dark);
}

/* ===== Card Styles ===== */
.card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.service-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 1.4rem;
}

.service-card p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .services-grid {
    gap: 2rem;
  }

  .service-image {
    height: 240px;
  }

  .service-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .service-image {
    height: auto;
  }

  .service-image img {
    height: auto;
    object-fit: contain;
  }

  .service-content {
    padding: 1.75rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }

  .service-icon i {
    font-size: 1.75rem;
  }

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

  .service-card p {
    font-size: 1rem;
  }

  .language-toggle {
    margin-left: 1rem;
  }
  
  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 1.5rem;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .language-toggle {
    margin-left: 0.5rem;
  }
  
  .lang-btn {
    padding: 0.3rem 0.6rem;
  }
  
  .lang-btn .lang-text {
    display: none;
  }
}

/* ===== About Section Styles ===== */
.about-section {
  background-color: var(--gray-light);
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-tagline {
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
}

/* ===== Footer Styles ===== */
.footer {
  background-color: var(--accent);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-section p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* ===== Social Links Styles ===== */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-dark);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-darker);
  transform: translateY(-3px);
}

.social-links i {
  font-size: 1.2rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .home-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-image {
    order: -1;
  }

  .home-image img {
    margin: 0 auto;
  }

  .home-buttons {
    justify-content: center;
  }

  .nav ul {
    gap: 1rem;
  }

  .header-content {
    padding: 0 0.75rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  main {
    padding-top: 90px;
  }
}

@media (max-width: 480px) {
  .nav ul {
    gap: 0.5rem;
  }

  .nav a {
    padding: 0.5rem;
  }

  .nav i {
    margin-right: 0;
  }

  .nav span {
    display: none;
  }
}

/* ===== Mobile Menu Styles ===== */
.menu-button {
  display: none;
}

@media (max-width: 768px) {
  .menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }

  .menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -50%;
    left: auto;
    width: 50%;
    height: calc(100vh - 70px);
    background: var(--accent);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
    left: auto;
  }

  .nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .nav a {
    padding: 1rem;
    width: 100%;
    justify-content: flex-start;
  }

  .header-content {
    padding: 0 1rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  main {
    padding-top: 90px;
  }
}

/* ===== Overlay for Mobile Menu ===== */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== Contact Page Styles ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info .card {
  padding: 1.5rem;
}

.contact-info h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-info h3 i {
  color: var(--primary-dark);
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: #666;
  font-size: 0.875rem;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--primary-dark);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--primary-darker);
  transform: translateY(-2px);
}

.submit-button:disabled {
  background-color: var(--gray);
  cursor: not-allowed;
  transform: none;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

/* ===== Service Detail Styles ===== */
.service-details {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-details h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

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

.service-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.service-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.service-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.service-features h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.highlight {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 10px;
    margin: 2rem 0;
}

.cta-section {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.cta-section .btn {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-section .btn:first-child {
    background: #4B9B6E;
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-section .btn:first-child:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-section .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  margin-top: 4rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.1;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-section .card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-section p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-section .link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-section .link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.contact-section .link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
    margin-top: 3rem;
  }

  .contact-section h2 {
    font-size: 1.8rem;
  }

  .contact-section .card {
    padding: 2rem;
  }

  .contact-section p {
    font-size: 1.1rem;
  }

  .contact-section .link {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2.5rem 0;
    margin-top: 2.5rem;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }

  .contact-section .card {
    padding: 1.75rem;
  }

  .contact-section p {
    font-size: 1rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header {
        padding: 0.5rem 0;
    }

    .header-content {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .menu-button span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -50%;
        left: auto;
        width: 50%;
        height: calc(100vh - 70px);
        background: var(--accent);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
        left: auto;
    }

    .nav ul {
        flex-direction: column;
        padding: 1rem;
    }

    .nav a {
        padding: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    main {
        padding-top: 90px;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Service Cards */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .service-card {
        margin: 0;
    }

    .service-card img {
        height: 200px;
    }

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

    .service-card p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    input, textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    /* About Section */
    .about-section {
        padding: 2rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 250px;
    }

    /* Testimonials */
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav {
        width: 75%;
        right: -75%;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .service-card img {
        height: 180px;
    }

    .slider {
        height: 250px;
    }

    .slide-content h2 {
        font-size: 1.25rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 0;
}

.slider {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    border-radius: 20px;
}

.slide {
    position: relative;
    width: 25%;
    height: 100%;
    border-radius: 20px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.slide-content h2 {
    margin: 0;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    margin: 0;
    font-size: 1.2rem;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: background 0.3s;
    z-index: 10;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media (max-width: 900px) {
    .slider-container {
        height: 400px;
    }
    .slide-content {
        padding: 1.5rem;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .slider-container {
        height: 150px;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
    }
    .slide-content {
        padding: 0.5rem;
    }
    .slide-content h2 {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
        line-height: 1.2;
    }
    .slide-content p {
        font-size: 0.75rem;
        margin: 0;
        line-height: 1.2;
    }
    .slider-button {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    .prev {
        left: 5px;
    }
    .next {
        right: 5px;
    }
    .slide img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    .slide-content {
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.slide a:hover .slide-content {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.slide a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services .heading {
    text-align: center;
    margin-bottom: 3rem;
}

.services .heading h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services .heading p {
    color: #666;
    font-size: 1.1rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.service-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-box p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-box .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.service-box .btn:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .service-box {
        padding: 1.5rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Mission Statement */
main > p {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

main > p:first-of-type {
    margin-top: 3rem;
}

main > p:last-of-type {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    main > p {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
  .home {
    margin-top: 70px;
    padding: 0;
  }

  .slider-container {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .slide {
    width: 100%;
  }

  .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Center Cards Grid for 2-column layout */
.center-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto 2rem;
  max-width: 1300px;
}
@media (max-width: 900px) {
  .center-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Make center cards bigger */
.center-card {
  max-width: 100%;
  min-height: 320px;
  padding: 3.5rem 2.5rem;
  font-size: 1.15rem;
}