* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: contain;
}

.nav-logo h2 {
  color: #2c5530;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

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

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
}

.nav-link:hover {
  color: #2c5530;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 50%;
  background: linear-gradient(45deg, #ffb366, #ff9933);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.language-toggle {
  margin-left: 2rem;
}

.lang-btn {
  background: linear-gradient(45deg, #ffb366, #ff9933);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 179, 102, 0.3);
}

.lang-btn:hover {
  background: linear-gradient(45deg, #ff9933, #e6851a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 102, 0.4);
}

.lang-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(44, 85, 48, 0.1);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #2c5530;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 85, 48, 0.8) 0%, rgba(74, 124, 89, 0.7) 100%);
  z-index: 2;
}

/* Floating Text Elements */
.floating-text {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: #2c5530;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 4;
  animation: floatText 6s ease-in-out infinite;
  white-space: nowrap;
}

.floating-text-1 {
  top: 12%;
  left: 5%;
  animation-delay: 0s;
}

.floating-text-2 {
  top: 20%;
  right: 5%;
  animation-delay: 1.2s;
}

.floating-text-3 {
  top: 60%;
  left: 8%;
  animation-delay: 2.4s;
}

.floating-text-4 {
  bottom: 25%;
  right: 15%;
  animation-delay: 3.6s;
}


.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-content {
  animation: slideInUp 1s ease-out;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #ffb366;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-motto {
  margin-bottom: 3rem;
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
}

.motto-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.cta-button {
  border: none;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-button.primary {
  background: linear-gradient(45deg, #ffb366, #ff9933);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 179, 102, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 179, 102, 0.5);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 150px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 1rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ffb366, #ff9933);
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  max-width: 100%;
}

.about-text .about-highlight {
  background: rgba(44, 85, 48, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #2c5530;
  margin-bottom: 2rem;
  position: relative;
}

.about-highlight i {
  color: #ffb366;
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.about-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(44, 85, 48, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.about-location i {
  color: #ffb366;
  font-size: 1.5rem;
}

.about-location span {
  color: #666;
  font-weight: 500;
}

.about-image {
  position: relative;
  margin-top: 3rem;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(45deg, #ffb366, #ff9933);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(255, 179, 102, 0.3);
}

.experience-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.experience-text {
  font-size: 1rem;
  font-weight: 600;
}


.stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  border-radius: 15px;
  transition: transform 0.3s ease;
  border: 2px solid rgba(44, 85, 48, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 85, 48, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: #666;
}

/* Desktop layout for about section */
@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
    margin-top: 0;
    position: relative;
  }
}

@media (min-width: 1200px) {
  .about-content {
    grid-template-columns: 2fr 1fr;
    gap: 8rem;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
    margin-top: 0;
  }
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* For exactly 12 services - better distribution */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    max-width: 400px;
    width: 100%;
  }
}

.service-features {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-tag {
  background: rgba(255, 179, 102, 0.15);
  color: #ff9933;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 179, 102, 0.3);
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffb366, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

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

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c5530;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-status {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #ffb366, #ff9933);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 179, 102, 0.3);
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.project-location i {
  color: #ffb366;
}

.project-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.project-details {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.project-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.8rem;
  color: #999;
  font-weight: 500;
}

.detail-value {
  font-size: 0.9rem;
  color: #2c5530;
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* For exactly 6 features - better distribution */
@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    max-width: 400px;
    width: 100%;
  }
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffb366, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c5530;
  margin-bottom: 0.5rem;
}

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

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffb366, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h4 {
  font-weight: 600;
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.contact-details a {
  color: #2c5530;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  height: 850px;
  display: flex;
  flex-direction: column;
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 179, 102, 0.2);
  flex-shrink: 0;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.form-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.iframe-container {
  position: relative;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 5px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  height: 740px;
}

.iframe-container iframe {
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 730px !important;
}

/* Responsive iframe styling */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.2rem;
    max-width: 100%;
    height: 750px;
  }
  
  .iframe-container {
    padding: 4px;
    height: 650px;
  }
  
  .iframe-container iframe {
    height: 640px !important;
  }
  
  .form-header {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1rem;
    height: 700px;
  }
  
  .iframe-container {
    padding: 3px;
    height: 620px;
  }
  
  .iframe-container iframe {
    height: 610px !important;
  }
  
  .form-header h3 {
    font-size: 1.3rem;
  }
  
  .form-header p {
    font-size: 0.9rem;
  }
  
  .form-header {
    margin-bottom: 0.8rem;
  }
}

/* Footer */
.footer {
  background: white;
  color: #333;
  padding: 50px 0 20px;
  border-top: 1px solid #e0e0e0;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #2c5530;
  font-weight: 700;
}

.footer-section p {
  line-height: 1.6;
  color: #666;
}

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

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

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #2c5530;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 179, 102, 0.3);
  color: #666;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatText {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-10px) scale(1.05);
  }
  50% {
    transform: translateY(-15px) scale(1);
  }
  75% {
    transform: translateY(-5px) scale(0.98);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    height: 80px;
    padding: 0 20px;
  }

  .nav-logo h2 {
    font-size: 1.4rem;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .motto-text {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  /* Hide floating text on mobile for better readability */
  .floating-text {
    display: none;
  }

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

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-img {
    height: 300px;
  }

  .about-experience {
    position: static;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

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

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
    height: 70px;
  }

  .nav-logo h2 {
    font-size: 1.2rem;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .nav-menu {
    top: 70px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  /* Keep floating text hidden on mobile */
  .floating-text {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for language toggle */
.lang-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}
