/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Accounts for fixed header */
}

body {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-color);
}

/* Navigation Styles */
.main-nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--nav-background);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1rem var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo img {
  width: 30px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color var(--transition-speed);
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  position: relative;
}

.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--background-color);
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-secondary);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}

/* Optional: Add a loading state */
.hero-video.loading {
  opacity: 0;
}

.hero-video.loaded {
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Consistent CTA Button Style */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.5px;
  
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

/* Form specific styles */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Hamburger Animation */
  .mobile-menu-btn.active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }

  body {
    font-size: 0.95rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .hero-section {
    height: calc(100vh - 70px); /* Adjust for mobile */
  }

  .hero-background img {
    object-fit: cover; /* Switch to cover on mobile for better appearance */
  }
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section Header (consistent across sections) */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Updated About Section Styles */
.about-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.lead-text {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.feature {
  padding: var(--spacing-md);
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.feature h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.stat {
  padding: var(--spacing-md);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
}

.about-description {
  margin: var(--spacing-xl) 0;
}

.about-description p {
  margin-bottom: var(--spacing-md);
}

.certifications {
  margin: var(--spacing-xl) 0;
}

.certifications h3 {
  margin-bottom: var(--spacing-md);
}

.certifications ul {
  list-style: none;
  padding: 0;
}

.certifications li {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.certifications i {
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 5px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

/* Services Section */
.services-section {
  padding: var(--spacing-xl) 0;
  background-color: #f9f9f9;
}

.services-section h2 {
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-family: var(--font-secondary);
  padding: var(--spacing-md);
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-card p {
  padding: 0 var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
  line-height: 1.5;
}

/* Buttons */
.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  transition: all var(--transition-speed);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-tertiary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: var(--spacing-md);
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color var(--transition-speed);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.btn-tertiary:hover {
  background-color: var(--primary-color);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-color);
}

.contact-section h2 {
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: grid;
  gap: var(--spacing-s);
}

.info-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: #f9f9f9;
  border-radius: 10px;
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.contact-form {
  background: #f9f9f9;
  padding: var(--spacing-xl);
  border-radius: 10px;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Focus states */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Submit Button */
.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  display: inline-block;
}

.submit-btn:hover {
  background-color: #3d8c40; /* Darker shade of primary color */
  transform: translateY(-2px);
}

.submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

/* Footer Styles */
.footer {
  background-color: #f8f9fa;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: var(--spacing-xl);
}

/* Footer Column Styles */
.footer-col {
  min-width: 0; /* Prevents content overflow */
}

.footer-col h3 {
  color: var(--text-color);
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Logo Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.footer-logo .company-name {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-col p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Quick Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

/* Contact Info */
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-top: 4px;
}

.contact-info span {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-info a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--background-color);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-color);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-col {
    text-align: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
  display: flex;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.fade-in.visible {
  opacity: 1;
}

/* Hover Effects */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  color: var(--primary-color);
}

/* Smooth transition for navigation links */
.nav-links a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
}

/* About Images Grid */
.about-images-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 20px;
  height: 900px; /* Increased height */
  position: relative;
}

.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Updated image positions for larger sizes */
.image-item:nth-child(1) {
  grid-column: 1 / 8; /* Wider main image */
  grid-row: 1 / 7;
}

.image-item:nth-child(2) {
  grid-column: 8 / 13; /* Wider secondary image */
  grid-row: 2 / 6;
}

.image-item:nth-child(3) {
  grid-column: 2 / 6;
  grid-row: 7 / 13;
}

.image-item:nth-child(4) {
  grid-column: 6 / 13; /* Wider fourth image */
  grid-row: 6 / 11;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .about-images-grid {
    height: 700px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .image-item {
    height: 300px; /* Fixed height for mobile */
  }
}

/* Animation for images */
.image-item {
  /* opacity: 0; */
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.image-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-item:hover {
  transform: translateY(-10px);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.image-item:hover .image-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #3d8c40; /* Darker shade of primary color */
}

a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Information Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 1.2rem;
  color: var(--background-color);
}

.card-content {
  flex: 1;
}

.card-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 8px;
}

.card-details {
  color: var(--text-color);
  line-height: 1.5;
}

.card-details p {
  margin: 0;
}

.card-details a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-details a:hover {
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .info-card {
    padding: 20px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-icon i {
    font-size: 1rem;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 600px; /* Smaller max-width for single column */
  }

  .info-cards {
    max-width: 100%; /* Allow cards to fill available space */
  }
}

/* Company Info Styles */
.company-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.info-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.info-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .company-info {
    order: -1;
  }
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 70px;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    gap: 10px;
}

.logo img {
   width: 180px;
}

.company-name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:first-child {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:last-child {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Desktop Hover Effects */
@media (min-width: 769px) {
    .nav-links a {
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }
}
