/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  color: #110707;
  padding: 1rem 1.4rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: #000000;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f39c12;
}

.nav-buttons {
  display: flex;
  align-items: center;
}

.cta {
  background-color: #f39c12;
  color: #121111;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-right: 1rem;
  font-weight: 700;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #e67e22;
}

.language-switch {
  color: #0b0b0b;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
}

/* Hero Section */
#hero {
  height: 100vh;
  background: url('81.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f0303;
  text-align: center;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0;
  font-weight: bold;
}

.hero-content .cta {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

/* Services Section */
#services {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

#services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 1rem;
  width: 280px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 2rem;
  color: #f39c12;
  margin-bottom: 1rem;
}

/* Portfolio Section */
#portfolio {
  padding: 4rem 2rem;
  text-align: center;
}

#portfolio h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.portfolio-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-item {
  position: relative;
  width: 280px;
  margin: 1rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-info {
  padding: 1rem;
  background: #fff;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.portfolio-info p {
  color: #666;
}
/* General Styles */
#team {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

#team h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.team-member {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}

.team-member img {
  width: 17%;
  height: auto;
  border-radius: 50%;
  border: 5px solid #007BFF;
  transition: transform 0.3s ease;
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 15px 0 5px;
  color: #333;
}

.team-member p {
  font-size: 1rem;
  color: #666;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member:hover img {
  transform: scale(1.05);
}

#team p {
  margin-top: 20px;
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
}
/* General Styles */
#stats {
  padding: 50px 0;
  background-color: #fff;
  text-align: center;
}

#stats h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stats-item {
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stats-icon {
  font-size: 3rem;
  color: #007BFF;
  margin-bottom: 10px;
}

.stats-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
}

.counter {
  font-size: 2rem;
  color: #007BFF;
  font-weight: bold;
}



/* About Section */
#about {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#about p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Blog Section */
#blog {
  padding: 4rem 2rem;
}

#blog h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-post {
  width: 280px;
  margin: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-post h3 {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.blog-post p {
  color: #666;
  padding: 0 1rem;
}

.read-more {
  display: block;
  text-align: center;
  padding: 0.5rem;
  color: #f39c12;
  font-weight: 700;
}

/* Contact Section */
#contact {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e67e22;
}

footer {
  background-color: #1d1f2f;
  color: #f0f0f0;
  padding: 60px 0;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.footer-info, .footer-contact, .footer-social, .footer-newsletter {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-info h3, .footer-contact h3, .footer-social h3, .footer-newsletter h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-info ul {
  list-style: none;
  padding: 0;
}

.footer-info ul li a {
  color: #f0f0f0;
  text-decoration: none;
  line-height: 1.8;
  font-size: 14px;
}

.footer-info ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social .social-links a {
  color: #f0f0f0;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social .social-links a:hover {
  color: #00bcd4;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 3px;
  margin-right: 10px;
  flex: 1;
}

.footer-newsletter button {
  padding: 10px 20px;
  border: none;
  background-color: #00bcd4;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: #0097a7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #383a4f;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
}

.footer-links li {
  margin-left: 20px;
}

.footer-links li a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 14px;
}

.footer-links li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-sections {
      flex-direction: column;
  }

  .footer-newsletter form {
      flex-direction: column;
  }

  .footer-newsletter input[type="email"] {
      margin-bottom: 10px;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }

  .footer-links {
      margin-top: 10px;
      justify-content: center;
  }

  .footer-links li {
      margin-left: 10px;
  }
}


@media (max-width: 768px) {
  .nav-links {
      display: none;
  }

  .menu-toggle {
      display: block;
  }
}

/* Animations with AOS */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-down"] {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-down"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
