/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}


body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6fff9;
  color: #1a3e2f;
  line-height: 1.6;
  position: relative;
}

/* Fixed background logo */
.fixed-bg-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.29;
  z-index: -1;
}

/* Top Contact Bar */
.top-bar {
  background-color: #d1f5d3;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.social-icons a {
  margin-left: 10px;
  color: #2e7d32;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 70px;
  margin-left: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3.5rem;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: #104a13;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #51b400;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #00e40f;
  transform: scale(1.05);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-links li a:hover::after {
  width: 100%;
}

.lang-selector {
  position: relative;
  cursor: pointer;
  color: #2e7d32;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.selected-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #f6fff9;
  border-radius: 4px;
  border: 1px solid #d1f5d3;
}

.selected-lang .flag-icon {
  width: 20px;
  height: auto;
}

.selected-lang span {
  font-size: 14px;
  color: #2e7d32;
}

.selected-lang i {
  font-size: 12px;
  color: #2e7d32;
  margin-left: 4px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: white;
  border: 1px solid #d1f5d3;
  border-radius: 4px;
  overflow: hidden;
  z-index: 10;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lang-selector:hover .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  text-decoration: none;
  color: #2e7d32;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.lang-dropdown a:hover {
  background-color: #f6fff9;
}

.lang-dropdown a.active {
  background-color: #d1f5d3;
  font-weight: 600;
}

.flag-icon {
  width: 18px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
}



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden; /* Ensures no image overflows */
}


/* Carousel Section */
.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-img.active {
  opacity: 1;
}


.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(9, 22, 13, 0.3),
    rgba(9, 22, 13, 0.5)
  );
  backdrop-filter: blur(2px);
  z-index: 0;
}




.hero-content {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  text-align: center;
  padding: 2.5rem 3rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideDown 1s ease-out;
}

.hero-content p {
  font-size: 1.8rem;
  color: #f6fff9;
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: slideUp 1s ease-out;
}

.p1 {
  color: #80ff17;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(128, 255, 23, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

.btn {
  background: linear-gradient(45deg, #2e7d32, #1b5e20);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  animation: fadeIn 2s ease-out;
}

.btn:hover {
  background: linear-gradient(45deg, #1b5e20, #2e7d32);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(128, 255, 23, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(128, 255, 23, 0.8),
                 0 0 30px rgba(128, 255, 23, 0.6);
  }
}

.about-main {
  background-color: #2e7d32;
  color: #ffffff;
  padding: 5rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  margin: 3rem auto;
  margin-top: 140px;
  max-width: 1200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.about-sub {
  background-color: #ffffff;
  color: #2e7d32;
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.7);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff; /* or #2e7d32 for dark on light */
  text-shadow:
    2px 2px 0 #1b5e20,
    4px 4px 0 #145c18,
    4px 4px 6px rgba(34, 32, 32, 0.6);
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  
  text-shadow:
    1px 1px 0 #1b5e20,
    2px 2px 4px rgba(0, 0, 0, 0.2);
}


.about-main p, .about-sub p {
  font-size: 1.125rem;
  line-height: 1.8;
}

/*Service*/
.section-title1{
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color:#104a13;/* or #2e7d32 for dark on light */
    text-shadow:
    1px 1px 0 #125d17,
    2px 2px 0 #9bffa7,
    3px 3px 5px rgba(34, 32, 32, 0.6);
}

.services-section {
  background-color: #f0fff4;
  padding: 4rem 1rem;
  text-align: center;
  margin-top: 140px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Force 2 per row */
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.service-card {
  
 background: linear-gradient(135deg, rgb(18, 105, 12), rgb(39, 192, 39));
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background: rgb(99, 221, 0); /* overrides gradient */
 
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 1rem 0 0.5rem;
  font-weight: 700;
}

.service-card p {
  padding: 0 1rem 1.5rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}


/* Contact Section Styles */
.contact-section {
  padding: 8rem 1.5rem 5rem;  /* Increased top padding to show background logo */
  background-color: #f6fff9;
  position: relative;
  margin-top: 2rem;  /* Added margin to create space from above */
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;  /* Ensure content stays above background logo */
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
}

.contact-info-content {
  margin-bottom: 2rem;
}

.contact-info-content h3 {
  color: #2e7d32;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info-content > p {
  color: #1b5e20;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method i {
  font-size: 1.5rem;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method h4 {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.contact-method p {
  color: #1b5e20;
  margin: 0;
  line-height: 1.4;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #2e7d32;
  color: white;
  transform: translateY(-3px);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
}

.contact-form h3 {
  color: #2e7d32;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e8f5e9;
  border-radius: 10px;
  font-size: 1rem;
  color: #1b5e20;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, #2e7d32, #1b5e20);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

/* Enhanced Responsive Adjustments for Contact Section */
@media (max-width: 992px) {
  .contact-section {
    padding: 6rem 1.5rem 4rem;  /* Adjusted padding for tablets */
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 5rem 1rem 3rem;  /* Further adjusted padding for mobile */
    margin-top: 1rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .contact-method {
    flex-direction: row;
    align-items: center;
  }

  .contact-method i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .contact-method h4 {
    font-size: 1.1rem;
  }

  .contact-method p {
    font-size: 0.95rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .contact-form h3 {
    font-size: 1.6rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .contact-form button {
    padding: 0.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 4rem 0.8rem 2rem;  /* Further reduced padding for small phones */
  }

  .contact-info,
  .contact-form {
    padding: 1.2rem;
    border-radius: 15px;  /* Slightly reduced border radius for mobile */
  }

  .contact-method {
    gap: 0.8rem;
  }

  .contact-method i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    padding: 0.7rem;
  }

  .contact-method h4 {
    font-size: 1rem;
  }

  .contact-method p {
    font-size: 0.9rem;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .map-container {
    border-radius: 10px;
  }

  .map-container iframe {
    height: 200px;  /* Reduced map height for mobile */
  }

  .contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  .contact-form textarea {
    height: 120px;  /* Reduced textarea height for mobile */
  }

  .contact-form button {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
}

/* Footer */
footer {
  background-color: #d1f5d3;
  text-align: center;
  padding: 1rem;
  color: #1a3e2f;
  font-size: 0.9rem;
}

footer a:hover {
  color: #51b400;
  text-decoration: underline;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger:hover {
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 6px;
}


.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #2e7d32;
  border-radius: 3px;
  transition: 0.3s ease;
}

.hamburger.open {
  box-shadow: 0 0 10px rgba(46, 125, 50, 0.5);
  border-radius: 6px;
  padding: 3px;
  background-color: rgba(76, 175, 80, 0.05);
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Side Nav Styles */
.side-nav {
  position: fixed;
  top: 0;
  right: -100%; /* changed from left to right */
  width: 75%;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1); /* shadow on the left */
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 999;
}

.side-nav.open {
  right: 0; /* Slide in from right */
}

.side-nav a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2e7d32;
  transition: color 0.3s ease, transform 0.3s ease;
}

.side-nav a:hover {
  color: #51b400;
  transform: translateX(5px);
}

.side-lang-selector a {
  font-size: 1rem;
  font-weight: 500;
  color: #388e3c;
  margin-top: 1rem;
  display: block;
}

.side-lang-selector a:hover {
  color: #00c853;
}

.close-btn {
  font-size: 2rem;
  color: #2e7d32;
  align-self: flex-end;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* By default: show desktop nav, hide hamburger */
.nav-links {
  display: flex;
  gap: 2rem; /* adjust as needed */
}

.hamburger {
  display: none;
}


/* Hide nav links & lang selector on mobile */
@media (max-width: 768px) {
  .nav-links,
  .lang-selector {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #104a13;
    transition: 0.3s;
  }

/* Hero Section */
  .hero {
    height: auto;
    padding: 20px 0; /* Ensure some space */
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  
  /* About Section */
  .about-main, .about-sub {
    padding: 3rem 1rem;
  }

  .about-main h2, .about-sub h2 {
    font-size: 2rem;
  }

  /* Service Section */
  .services-section {
    padding: 2rem 1rem;
  }

  .service-card {
    font-size: 1rem;
    margin: 0.5rem 0;
  }

  /* Contact Form */
  .contact-container {
    margin: 100px 0;
    flex-direction: column;
    padding: 20px;
  }

  .contact-info, .contact-form {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }

  .contact-info {
    background-color: #a5ffad;
    padding: 2rem;
  }

  /* Footer */
  footer {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  /* Language-specific adjustments */
  [lang="mk"] .hero-content h1 {
    font-size: 1.7rem;
  }

  [lang="al"] .hero-content h1 {
    font-size: 1.6rem;
  }

  [lang="al"] .hero-content p {
    font-size: 1rem;
  }

  /* Improve text wrapping for longer words */
  .hero-content p,
  .section-title,
  .section-subtitle {
    word-wrap: break-word;
    hyphens: auto;
  }
}


/* Smaller mobile view (max-width: 480px) */
@media (max-width: 480px) {
  /* Hero Section */
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  /* Service Section */
  .services-grid {
    grid-template-columns: 1fr; /* Stacking service cards */
  }

  .service-card img {
    height: 200px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  /* Contact Form */
  .contact-form input,
  .contact-form textarea {
    font-size: 0.875rem;
  }

  .contact-form button {
    padding: 0.5rem;
    font-size: 1rem;
  }

  /* Language-specific adjustments */
  [lang="mk"] .hero-content h1 {
    font-size: 1.5rem;
  }

  [lang="al"] .hero-content h1 {
    font-size: 1.4rem;
  }
}

/* Impact Section */
.impact-section {
  padding: 5rem 1.5rem;
  background-color: #f6fff9;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(46, 125, 50, 0.1) 100%);
  z-index: 0;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.impact-description {
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2e7d32;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.impact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-icon i {
  font-size: 1.8rem;
  color: #2e7d32;
}

.impact-content {
  flex-grow: 1;
}

.impact-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.impact-content p {
  font-size: 1.1rem;
  color: #1b5e20;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .impact-stats {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .impact-card {
    padding: 1.5rem;
  }

  .impact-content h3 {
    font-size: 2rem;
  }

  .impact-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Thank You Page Styles */
.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f6fff9;
}

.thank-you-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.thank-you-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.1);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.success-icon {
  font-size: 5rem;
  color: #2e7d32;
  margin-bottom: 1.5rem;
  animation: scaleIn 0.5s ease-out 0.3s both;
}

.thank-you-content h1 {
  color: #2e7d32;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.thank-you-content p {
  color: #1b5e20;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thank-you-details {
  background: #e8f5e9;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.thank-you-details p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.thank-you-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thank-you-details li {
  margin: 1rem 0;
  color: #1b5e20;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.thank-you-details li i {
  color: #2e7d32;
  font-size: 1.2rem;
}

.return-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: linear-gradient(45deg, #2e7d32, #1b5e20);
  transition: all 0.3s ease;
}

.return-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
}

.return-home-btn i {
  font-size: 1.2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* Responsive Adjustments for Thank You Page */
@media (max-width: 768px) {
  .thank-you-content {
    padding: 2rem;
  }

  .success-icon {
    font-size: 4rem;
  }

  .thank-you-content h1 {
    font-size: 2rem;
  }

  .thank-you-content p {
    font-size: 1.1rem;
  }

  .thank-you-details {
    padding: 1.5rem;
  }

  .thank-you-details li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 1.5rem;
  }

  .success-icon {
    font-size: 3.5rem;
  }

  .thank-you-content h1 {
    font-size: 1.8rem;
  }

  .thank-you-details {
    padding: 1rem;
  }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  /* Language-specific adjustments */
  [lang="mk"] .hero-content h1 {
    font-size: 1.5rem;
  }

  [lang="al"] .hero-content h1 {
    font-size: 1.4rem;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Language-specific adjustments */
  [lang="mk"] .hero-content h1 {
    font-size: 1.7rem;
  }

  [lang="al"] .hero-content {
    padding: 0.8rem;
  }

  [lang="al"] .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    word-wrap: break-word;
  }

  [lang="al"] .hero-content p {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    max-width: 95%;
  }

  .hero-content .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-block;
  }

  /* Language-specific adjustments */
  [lang="al"] .hero-content .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    min-width: 160px;
    text-align: center;
    letter-spacing: 0.5px;
  }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
  .hero-content {
    padding: 0.8rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  /* Language-specific adjustments */
  [lang="mk"] .hero-content h1 {
    font-size: 1.5rem;
  }

  [lang="al"] .hero-content {
    padding: 0.6rem;
  }

  [lang="al"] .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  [lang="al"] .hero-content p {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-content .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Language-specific adjustments */
  [lang="al"] .hero-content .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    min-width: 140px;
    letter-spacing: 0.3px;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  /* Language-specific adjustments */
  [lang="mk"] .section-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  [lang="al"] .section-title {
    font-size: 1.3rem;
  }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.3rem;
  }

  /* Language-specific adjustments */
  [lang="mk"] .section-title {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  [lang="al"] .section-title {
    font-size: 1.1rem;
  }
}

/* Web Access Button Styles */
.navbar .web-access-btn,
.side-nav .web-access-btn {
  display: inline-block !important;
  padding: 6px 15px !important;
  background-color: #2E7D32 !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  margin-left: 8px !important;
  font-size: 0.9em !important;
  border: 2px solid #1B5E20 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
  vertical-align: middle !important;
}

.navbar .web-access-btn:hover,
.side-nav .web-access-btn:hover {
  background-color: #1B5E20 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.navbar .web-access-btn:active,
.side-nav .web-access-btn:active {
  transform: translateY(1px) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile Responsive Styles for Web Access Button */
@media screen and (max-width: 768px) {
  .navbar .web-access-btn,
  .side-nav .web-access-btn {
    margin: 8px 0 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 8px 12px !important;
    display: block !important;
  }
}

/* Desktop Only Elements */
@media screen and (max-width: 768px) {
  .navbar .web-access-btn,
  .side-nav .web-access-btn,
  .desktop-only {
    display: none !important;
  }
}

/* Hide elements on mobile */
@media screen and (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .navbar .container {
    justify-content: space-between;
    padding: 0 15px;
  }

  /* Make section titles smaller on mobile */
  .section-title,
  .section-title1 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.2rem !important;
  }

  /* Ensure content stays within viewport */
  .container {
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }

  .content-wrapper {
    padding: 0 15px;
  }

  .services-grid {
    padding: 0 15px;
  }

  .contact-wrapper {
    padding: 0 15px;
  }

  .impact-container {
    padding: 0 15px;
  }
}
