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

:root {
  /* Light theme variables */
  --primary-color: #052717;
  --secondary-color: #052717;
  --accent-color: #ffd700;
  --text-color: #1f2937;
  --background-color: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --white: #ffffff;
  --card-background: #ffffff;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-color: #eee;
}

[data-theme="dark"] {
  --primary-color: #052717;
  --secondary-color: #052717;
  --accent-color: #ffd700;
  --text-color: #f3f4f6;
  --background-color: #111827;
  --light-gray: #2d2d2d;
  --dark-gray: #1a1a1a;
  --white: #1e1e1e;
  --card-background: #1f2937;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --border-color: #444;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation */
header {
  background: var(--white);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  display: inline-block;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-links li a:hover::after {
  width: 100%;
}

/* Active state for current section */
.nav-links li a.active {
  color: var(--primary-color);
}

.nav-links li a.active::after {
  width: 100%;
}

/* Special hover effect for action items */
/* .nav-links li:last-child a,
.nav-links li:nth-last-child(2) a,
.nav-links li:nth-last-child(3) a,
.theme-toggle {
    padding: 0.5rem;
    margin-left: 0.5rem;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
} */

/* .nav-links li:last-child a:hover,
.nav-links li:nth-last-child(2) a:hover,
.nav-links li:nth-last-child(3) a:hover,
.theme-toggle:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
} */

/* .nav-links li:last-child a::after,
.nav-links li:nth-last-child(2) a::after,
.nav-links li:nth-last-child(3) a::after {
    display: none;
} */

/* Hero Section */
.hero {
  height: 90vh;
  background: url(https://images.unsplash.com/photo-1521737604893-d14cc237f11d)
    center/cover no-repeat;
  /* background: url('/Blue Yellow Modern Corporate Presentation-1.png') center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
  position: relative;
}

.hero-content {
  max-width: 1000px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent-color);
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.read-more {
  color: #052717;
}

/* Achievements Section */
.achievements {
  padding: 5rem 2rem;
  background: var(--white);
  color: var(--primary-color);
}

.achievements .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.achievements .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.achievements .section-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
}

.achievements-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.achievement-item {
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--background-color);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(5, 39, 23, 0.1);
  border: 1px solid rgba(5, 39, 23, 0.1);
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(5, 39, 23, 0.15);
}

.achievement-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.achievement-item .counter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
}

.achievement-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.achievement-item p {
  color: var(--text-color);
  font-size: 1rem;
  opacity: 0.8;
}

/* Responsive styles for achievements */
@media (max-width: 1024px) {
  .achievements-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .achievement-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .achievements {
    padding: 3rem 1rem;
  }

  .achievement-item {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .achievement-item {
    flex: 1 1 100%;
  }
}

/* Services Section */
.services {
  padding: 80px 20px;
  background-color: #f0f8ff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  color: #052717;
}

.section-header h2 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: 20px;
}

.section-header p {
  font-size: 1.3em;
  color: #052717;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.service-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e0e0e0;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 3.5em;
  color: #052717;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.5;
}

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

/* About Section */
.about {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
}

/* Contact Section */
.contact {
  padding: 7rem 1rem;
  background-color: #f9f9f9;
}

.contact h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 7rem 2rem;
  background-color: var(--light-gray);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(5, 39, 23, 0.1);
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #004225;
  transform: translateY(-2px);
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  font-family: "Arial", sans-serif;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Grid */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
  justify-content: center;
}

/* Section Headers */
.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* About Section */
.footer-section.about p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Quick Links */
.footer-section.quick-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-section.quick-links ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section.quick-links ul li a:hover {
  color: var(--accent-color);
}

/* Contact Info */
.footer-section.contact {
  background-color: transparent;
  padding: 1rem;
}

.footer-section.contact p,
.footer-section.contact a {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0.3rem 0;
  text-decoration: none;
  opacity: 0.9;
}

.footer-section.contact i {
  margin-right: 8px;
  color: var(--accent-color);
}

.footer-section.contact a:hover {
  text-decoration: none;
}

/* Social Media */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  nav {
    padding: 0.5rem 2%;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.4rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
    /* margin-top: 20px; */
  }

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

  .content-grid,
  .blog-grid,
  .team-grid,
  .job-listings {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
    /* margin-top: 20px; */
  }

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

  .content-grid,
  .blog-grid,
  .team-grid,
  .job-listings {
    grid-template-columns: 1fr;
  }

  .theme-toggle-wrapper {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .service-card i {
    font-size: 2.5em;
  }

  .service-card h3 {
    font-size: 1.2em;
  }

  .service-card p {
    font-size: 0.9em;
  }

  .content-card,
  .blog-card,
  .job-card {
    padding: 1.5rem;
  }
}

/* What We Do Section */
.what-we-do {
  padding: 7rem 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.capability-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.capability-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.capability-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.learn-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.learn-more:hover {
  gap: 1rem;
}

/* What We Think Section */
.what-we-think {
  padding: 7rem 0;
  background-color: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
  margin: 1rem 0;
}

/* Who We Are Section */
.who-we-are {
  padding: 7rem 0;
  background: #ffffff;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.mission-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

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

.team-member {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.member-image {
  position: relative;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-social {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.member-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.member-social a:hover {
  transform: translateY(-2px);
}

.member-info {
  padding: 1.5rem;
  background: #ffffff;
}

.member-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.member-highlights li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .content-grid,
  .blog-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .blog-image {
    height: 250px;
  }
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.modal-content {
  background-color: var(--card-background);
  color: var(--text-color);
  margin: 15% auto;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 2rem;
  cursor: pointer;
}

.language-list {
  list-style: none;
  padding: 0;
}

.language-list li {
  padding: 0.5rem 0;
}

.language-list a {
  text-decoration: none;
  color: #2c3e50;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
  .content-grid,
  .blog-grid,
  .team-grid,
  .job-listings {
    grid-template-columns: 1fr;
  }
}

/* Theme Toggle Button */
.theme-toggle-wrapper {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background-color: var(--primary-color);
  color: white;
}

.theme-toggle i {
  font-size: 1.2rem;
}

/* Dark Mode Updates
[data-theme="dark"] {
    background-color: var(--background-color);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .content-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .job-card,
[data-theme="dark"] .modal-content {
    background: var(--card-background);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .section-header h2 {
    color: var(--text-color);
}

[data-theme="dark"] .section-header p {
    color: var(--text-color);
    opacity: 0.9;
}

[data-theme="dark"] header {
    background-color: var(--card-background);
}

[data-theme="dark"] .nav-links li a {
    color: var(--text-color);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea {
    background-color: var(--card-background);
    color: var(--text-color);
    border-color: #444;
}

[data-theme="dark"] .language-list a {
    color: var(--text-color);
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .theme-toggle-wrapper {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Chatbot Styles */
.chatbot {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.chatbot-toggle i {
  color: white;
  font-size: 1.5rem;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.chatbot-container {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 2rem;
  width: 350px;
  height: 500px;
  background-color: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

.chatbot-container.active {
  display: flex !important;
}

.chatbot-header {
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.chat-messages {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  margin: 0.5rem 0;
}

.message.bot {
  background-color: var(--light-gray);
  align-self: flex-start;
  border-bottom-left-radius: 0.3rem;
}

.message.user {
  background-color: var(--primary-color);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0.3rem;
}

.chat-input {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.chat-input input {
  flex-grow: 1;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--card-background);
  color: var(--text-color);
}

.send-message {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.send-message:hover {
  background-color: var(--secondary-color);
}

[data-theme="dark"] .chatbot-container {
  border: 1px solid var(--border-color);
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: block;
  }

  .nav-links li {
    display: block;
    margin: 0;
  }

  .nav-links li a {
    display: block;
    padding: 1rem 2rem;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }
}

/* Fix for the site.webmanifest error */
@media (max-width: 480px) {
  .nav-links {
    top: 70px;
  }
}

/* Theme toggle fixes */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Modal fixes */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

/* Chatbot fixes */
.chatbot-container {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 2rem;
  width: 350px;
  height: 500px;
  background-color: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

.chatbot-toggle {
  z-index: 999;
}

/* Language Dropdown */
.language-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  position: relative;
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.language-dropdown.show {
  display: block;
}

.language-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.3s;
}

.language-dropdown a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-box {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  height: 400px;
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.chat-box.show {
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.chat-messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
}

.message {
  margin-bottom: 10px;
  max-width: 80%;
}

.message.bot {
  background: var(--light-gray);
  padding: 10px;
  border-radius: 10px;
  margin-right: auto;
}

.message.user {
  background: var(--primary-color);
  color: white;
  padding: 10px;
  border-radius: 10px;
  margin-left: auto;
}

.chat-input-area {
  padding: 15px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}

.chat-input-area input {
  flex-grow: 1;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: var(--card-background);
  color: var(--text-color);
}

.chat-input-area button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 2rem;
  padding: 4rem 2rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-section p {
  margin: 0;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

/* Email link specific style */
a[href^="mailto:"] {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a[href^="mailto:"]:hover {
  color: var(--accent-color);
}

/* Phone number link style */
a[href^="tel:"] {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a[href^="tel:"]:hover {
  color: var(--accent-color);
}

/* Add these responsive styles for footer */
@media (max-width: 1024px) {
  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-section.contact p {
    max-width: 300px;
    margin: 0.3rem auto;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section p,
  .footer-links a {
    font-size: 0.9rem;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icons a {
    font-size: 1.3rem;
  }
}

/* Coming Soon Page Styles */
.coming-soon {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.coming-soon-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.logo-animate {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.coming-soon h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.glitch-text {
  font-size: 2rem;
  color: var(--accent-color);
  text-transform: uppercase;
  position: relative;
  text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
    0.025em 0.04em 0 #fffc00;
  animation: glitch 725ms infinite;
  margin-bottom: 2rem;
}

.coming-soon p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 3rem;
  opacity: 0.8;
}

/* Countdown Styles */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  min-width: 120px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.countdown-item span {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.countdown-item .label {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* Notification Form Styles */
.notify-container {
  max-width: 500px;
  margin: 2rem auto;
}

.notify-form {
  background: rgba(5, 39, 23, 0.6);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.notify-form input {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.notify-form input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.notify-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  background: #ffde33;
}

.notify-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#notify-message {
  text-align: center;
  margin-top: 1rem;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: var(--white);
  min-height: 24px;
}

/* Responsive Styles for Notify Form */
@media (max-width: 768px) {
  .notify-container {
    margin: 1.5rem;
  }

  .notify-form {
    padding: 1rem;
  }

  .notify-form input,
  .notify-btn {
    padding: 0.8rem 1rem;
  }
}

/* Back to Home Button */
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.back-home:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
      0.025em 0.04em 0 #fffc00;
  }

  15% {
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
      0.025em 0.04em 0 #fffc00;
  }

  16% {
    text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
      -0.05em -0.05em 0 #fffc00;
  }

  49% {
    text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
      -0.05em -0.05em 0 #fffc00;
  }

  50% {
    text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
      0 -0.04em 0 #fffc00;
  }

  100% {
    text-shadow: 0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
      -0.04em -0.025em 0 #fffc00;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .coming-soon {
    padding: 1rem;
  }

  .coming-soon h1 {
    font-size: 2.5rem;
  }

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

  .countdown-container {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .countdown-item {
    min-width: calc(50% - 1rem);
    padding: 1.5rem;
  }

  .countdown-item span {
    font-size: 2.5rem;
  }

  .notify-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
    border: none;
    gap: 1rem;
  }

  .notify-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .notify-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .coming-soon h1 {
    font-size: 2rem;
  }

  .countdown-item {
    min-width: calc(50% - 0.5rem);
    padding: 1rem;
  }

  .countdown-item span {
    font-size: 2rem;
  }

  .notify-form input,
  .notify-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: block;
  }

  .nav-links li {
    display: block;
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

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

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

/* Thank You Page Styles */
.thanks-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-gray);
  padding: 2rem;
}

.thanks-content {
  text-align: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
}

.thanks-content i {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

.thanks-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.thanks-content p {
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.back-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #004225;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .thanks-content {
    padding: 2rem;
  }

  .thanks-content i {
    font-size: 3rem;
  }

  .thanks-content h1 {
    font-size: 2rem;
  }

  .thanks-content p {
    font-size: 1rem;
  }
}
