/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c5530;
  position: absolute;
 margin-left: 100px;
}
.foot-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #www;
  position: absolute;

}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: center;
  flex: 1;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #4caf50;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4caf50;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Eklendi */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding-top: 80px;

}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;

}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  text-align: center;
   margin-left: 200px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #2c5530;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s both;
  margin-left: 175px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 70%;
  height: auto;
  animation: floating 3s ease-in-out infinite;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #4caf50;
  color: white;
}

.btn-primary:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #4caf50;
  border: 2px solid #4caf50;
}

.btn-secondary:hover {
  background: #4caf50;
  color: white;
  transform: translateY(-2px);
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
}

.services-preview .container,
.about-preview .container,
.services-detail .container,
.about-content .container,
.mission-vision .container,
.values .container,
.team .container,
.gallery .container,
.contact .container,
.map-section .container,
.faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c5530;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #4caf50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* About Preview */
.about-preview {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-items: center; /* Eklendi */
}

.about-text h2 {
  font-size: 2.5rem;
  color: #2c5530;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #666;
}

.features-list i {
  color: #4caf50;
  margin-right: 0.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: #2c5530;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #2c5530 0%, #4caf50 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Detail */
.services-detail {
  padding: 80px 0;
}

.service-detail {
  margin-bottom: 4rem;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-items: center; /* Eklendi */
}

.service-detail.reverse .service-content {
  direction: rtl;
}

.service-detail.reverse .service-text {
  direction: ltr;
}

.service-text h2 {
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-text i {
  color: #4caf50;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #666;
}

.service-features i {
  color: #4caf50;
  margin-right: 0.5rem;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

.about-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 4rem;
  margin-bottom: 4rem;
  margin-left: 20rem;
}

.intro-text {
  max-width: 800px;
  text-align: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  color: #2c5530;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro-text p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: center;
}

.intro-image {
  display: flex;
  justify-content: center;
  width:500px;
  height: 400px;
}

/* Mission Vision */
.mission-vision {
  padding: 80px 0;
  background: #f8f9fa;
}

.mission-vision .container,
.values .container,
.team .container,
.gallery .container,
.contact .container,
.map-section .container,
.faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mv-item {
  text-align: center;
  padding: 2rem;
}

.mv-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.mv-item h3 {
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.mv-item p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Values */
.values {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-row: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.5rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.value-item p {
  color: #666;
}

/* Team */
.team {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.5rem;
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.member-info p {
  color: #666;
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  color: #4caf50;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #2c5530;
}

/* Gallery */
.gallery-filter {
  padding: 40px 0;
  background: #f8f9fa;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid #4caf50;
  color: #4caf50;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #4caf50;
  color: white;
}

.gallery {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 85, 48, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-content {
  text-align: center;
  color: white;
}

.gallery-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.gallery-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: white;
  color: #4caf50;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 80%;
  max-height: 80%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.modal-content img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-info {
  padding: 1.5rem;
}

.modal-info h3 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.modal-info p {
  color: #666;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.close:hover {
  opacity: 0.7;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  justify-items: center; /* Eklendi */
}

.contact-info-section h2 {
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  background: #4caf50;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
}

.contact-form-section h2 {
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-container {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  background: #f0f0f0;
}

.map-placeholder i {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h3 {
  color: #2c5530;
  font-size: 1.2rem;
}

.faq-question i {
  color: #4caf50;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #2c5530;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #4caf50;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4caf50;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #4caf50;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.contact-info i {
  margin-right: 0.5rem;
  color: #4caf50;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}
.footer-bottom hover {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #www;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* AOS Animation Classes */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    justify-content: center;
  }

  .logo {
    position: static;
  }

  .nav-menu {
    justify-content: center;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .about-intro {
    text-align: center;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
    width: 100%;
  }

  .about-content,
  .service-content,
  .about-intro,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }

  .service-detail.reverse .service-content {
    direction: ltr;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    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;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 0 50px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-content,
  .service-content,
  .about-intro,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail.reverse .service-content {
    direction: ltr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .values-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-content {
    margin: 10% auto;
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-card,
  .value-item {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .hamburger {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero,
  .services-preview,
  .about-preview,
  .stats {
    page-break-inside: avoid;
  }
}

/* Text Content Width */
.service-text,
.about-text,
.intro-text {
  width: 100%;
  max-width: 100%;
}
