:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

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

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
  font-size: 16px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.language-toggle {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.language-toggle span {
  margin-right: 10px;
  font-size: 14px;
  color: var(--secondary-color);
}

.language-toggle select {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.neon-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid #00ff7f;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 0 10px #00ff7f, 0 0 20px #00ff7f, 0 0 30px #00ff7f;
  text-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f;
}

.neon-btn:hover {
  background-color: #00ff7f;
  color: #000;
  box-shadow: 0 0 20px #00ff7f, 0 0 40px #00ff7f, 0 0 60px #00ff7f;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

.section-title .alt-title {
  display: block;
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 15px;
  font-style: italic;
}

/* Services Section */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
}

/* Blog Section */
.blog-preview {
  background-color: var(--light-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.blog-content p {
  color: #666;
  margin-bottom: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: #999;
  font-size: 14px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial {
  text-align: center;
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--primary-color);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.testimonial .location {
  color: #999;
  font-size: 14px;
}

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-col p {
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--white);
  transition: var(--transition);
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  color: var(--text-color);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  min-width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Blog Page Styles */
.blog-header {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

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

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

/* Single Post Page */
.post-header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.post-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.post-meta span {
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 5px;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.post-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

.post-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.post-content h2, .post-content h3 {
  margin: 40px 0 20px;
  color: var(--secondary-color);
}

.post-tags {
  margin-top: 40px;
}

.post-tags span {
  display: inline-block;
  background-color: #f0f0f0;
  padding: 5px 15px;
  border-radius: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

.share-post {
  margin-top: 40px;
  text-align: center;
}

.share-post h3 {
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.linkedin {
  background-color: #0077b5;
}

.pinterest {
  background-color: #bd081c;
}

/* About Page */
.about-header {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

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

.about-image {
  border-radius: 8px;
  overflow: hidden;
  margin: 40px 0;
}

.about-image img {
  width: 100%;
  height: auto;
}

.mission-values {
  background-color: var(--light-bg);
  padding: 60px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.mission-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-card h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.team-info p {
  color: #666;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 50%;
  color: #666;
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px 0;
  }
  
  .nav-links {
    margin-top: 15px;
  }
  
  .nav-links li {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h2 {
    font-size: 30px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 26px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .logo h1 {
    font-size: 20px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links li {
    margin: 5px 10px;
  }
  
  .hero h2 {
    font-size: 24px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .section-title h2 {
    font-size: 22px;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.95);
  color: var(--white);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-text p {
  margin-bottom: 5px;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.accept-all {
  background-color: var(--primary-color);
  color: var(--white);
}

.settings {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.decline {
  background-color: #e74c3c;
  color: var(--white);
}

.cookie-btn:hover {
  opacity: 0.9;
}

/* Thank You Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--accent-color);
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.modal-content p {
  margin-bottom: 20px;
  color: #666;
}

.success-icon {
  font-size: 60px;
  color: #2ecc71;
  margin-bottom: 20px;
}
