@font-face {
  font-family: 'Concourse';
  src: url('./font/Concourse%20T4%20Regular.otf') format('opentype'),
       url('./font/Concourse T4 Regular.otf') format('opentype');
  font-display: swap;
}

:root {
  --primary-color: #75DAFF;
  --primary-transparent: rgba(117, 218, 255, 0.8);
  --accent-color: coral;
  --dark-color: #222;
  --light-color: #fff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: var(--transition);
  font-family: 'Concourse', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #f8f8f8;
}

/* Container for content sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-transparent);
  z-index: 100;
  box-shadow: var(--shadow);
}

.navbar.sticky {
  animation: fadeIn 0.5s ease-in-out;
}

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

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

.navLogo {
  transition: transform 0.3s ease;
}

.navLogo:hover {
  transform: scale(1.05);
}

.desktopNav {
  display: flex;
  list-style: none;
  align-items: center;
}

.desktopNav li {
  margin-left: 30px;
}

.desktopNav a {
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;  min-height: 60px;
}

.desktopNav a:hover,
.desktopNav a:focus {
  color: var(--primary-color);
}

.cta-btn {
  background-color: var(--accent-color);
  color: var(--light-color) !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #ff7f4f;
}

.cta-btn.large {
  padding: 14px 28px;
  font-size: 18px;
}

nav {
  align-items: center;
}

.aboutShell {
  margin-top: 50px;
  margin-left: 20px;
 margin-right: 20px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}

.aboutShell li{
  list-style: none;
}




.aboutShell img:hover {
  transform: scale(1.02);
}

.aboutText {
  max-width: 600px;
  width: 25%;
  min-width: 300px;
  margin-right: 25px;
}

.andyPic{
  margin-left: 25px;
}

.aboutBottom {
  margin-bottom: 50px;
  text-align: center;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
  max-width: 1000px;
 
}

.aboutbottomCenter{
  display: flex;
  justify-content: center;
}

.aboutBottom a {
  cursor: pointer;
  text-decoration: none;
}

.aboutBottom a:hover {
  color: coral;
}

.aboutShell h2 {
  text-decoration: underline;
}

.navLogo{
  margin-left: 50px;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background-color: #000;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./img/EdisonThree.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--light-color);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
}

/* Create a subtle light effect in the hero background */
.hero::after {
  content: '';
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
  opacity: 0.3;
  animation: pulseLight 15s infinite alternate;
  z-index: 0;
}

@keyframes pulseLight {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.05); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.2; }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-img {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
  overflow: visible; /* Allow audio player to show over the image */
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  margin-top: 100px; /* Add top margin from navbar */
  position: relative; /* For absolute positioning of audio player */
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.hero-img:hover img {
  transform: scale(1.03);
}

/* Enhanced Services Section */
.indexServices {
  padding: 80px 0;
  background-color: #fff;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--light-color);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s ease-in-out;
  position: relative;
  height: auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 20px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

.service-content {
  height: 100%;
}

.service-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
  background: #f8fafc;
  padding: 80px 0;
}

.why-choose-us .section-title {
  font-size: 32px;
  margin-bottom: 48px;
  color: var(--dark-color);
  font-weight: 600;
  text-align: center;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.why-feature-card {
  background: var(--light-color);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.why-feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(117, 218, 255, 0.15);
  transform: translateY(-4px);
}

.why-feature-card .why-icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), rgba(117, 218, 255, 0.8));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.why-feature-card:hover .why-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), rgba(255, 127, 80, 0.8));
}

.why-feature-card h4 {
  margin-bottom: 8px;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.why-feature-card p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.why-choose-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

/* Enhanced Quick Links Section */
.quick-links-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.quick-link-card {
  background: var(--light-color);
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  height: auto;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quick-link-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.quick-link-icon {
  font-size: 36px;
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

.quick-link-card:hover .quick-link-icon {
  transform: scale(1.1);
}

.quick-link-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-weight: 600;
}

.quick-link-card p {
  color: #64748b;
  margin: 0;
  font-size: 14px;  line-height: 1.4;
}

/* Contact Form */
.form-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.contactForm {
  background-color: var(--light-color);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.contactForm h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row input {
  flex: 1;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fafafa;
}

.contactForm input:focus,
.contactForm textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(117, 218, 255, 0.1);
  background: var(--light-color);
}

.contactForm textarea {
  resize: vertical;
  min-height: 100px;
}

.contactForm button {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto;
  display: block;
  transition: all 0.2s ease;
}

.contactForm button:hover {
  background-color: #ff7f4f;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
  color: var(--light-color);
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact p::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-contact a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-contact a:hover::after {
  width: 100%;
}

.footer-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.footer-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-icons a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.3);
}

.footer-icons img {
  transition: all 0.3s ease;
  filter: brightness(0.8);
}

.footer-icons a:hover img {
  filter: brightness(1);
  transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #888;
  font-size: 14px;
}

.desktopFooter{
  display: none;
}

.mobileFooter{
  display: none;
}

/* Loading animation */
#loading-ring {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loading-ring::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-color);
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Mobile Navigation */
.mobileNav {
  display: none;
}

.burgerMenu {
  height: 48px;
  width: 48px;
  margin-top: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.burgerMenu:hover {
  background-color: rgba(117, 218, 255, 0.1);
}

#menu1,
#menu2 {
  width: 24px;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

#menu1 {
  top: 18px;
}

#menu2 {
  bottom: 18px;
}

.burgerMenu.active #menu1 {
  transform: rotate(45deg) translate(3px, 3px);
}

.burgerMenu.active #menu2 {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromBottom {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Apply animations to elements */
.hero-text h1, .hero-text h2, .hero-desc {
  animation: slideInFromBottom 0.8s forwards;
}

.hero-text h2 {
  animation-delay: 0.2s;
}

.hero-desc {
  animation-delay: 0.4s;
}

.hero-text .cta-btn {
  animation: slideInFromBottom 0.8s forwards;
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar scroll effect */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #ff7f4f;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-img {
    margin-left: 0;
    margin-top: 60px; /* Adjust for tablet */
    max-width: 100%;
  }
    .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Why Choose Us - Tablet */
  .why-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .why-feature-card {
    min-height: 190px;
    padding: 28px 20px;
  }
  
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }.why-choose-image {
    order: -1;
  }
}

/* Hide mobile menu close button on desktop */
.mobile-menu-close {
  display: none;
}

@media (max-width: 768px) {
  .nav-content {
    padding: 10px 0;
  }
  
  .navLogoWrap img {
    height: 50px;
  }
  
  .mobileNav {
    display: flex;
    position: relative;
  }  /* Mobile menu overlay - FIXED Z-INDEX LAYERING */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 990 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }/* Slide-out navigation panel */
  .desktopNav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 30px 30px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    z-index: 1001 !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  
  .desktopNav.active {
    right: 0;
  }
  
  .desktopNav li {
    margin: 0;
    list-style: none;
  }

  .desktopFooter{
    display: none;
  }

  .mobileFooter{
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    background-color: var(--dark-color);
    align-items: center;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .service-card {
    min-height: auto;
  }
    .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-icons {
    justify-content: center;
  }

  .footer-contact p::before {
    display: none;
  }
  
  .quick-link-card {
    height: 150px;
    min-height: 200px;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
    .contactForm {
    padding: 20px 16px;
  }

  .why-choose-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .why-feature {
    padding: 15px;
  }

  .why-feature:hover {
    transform: translateY(-5px);
  }

  .quick-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }  .stats-section,
  .indexServices,
  .why-choose-us,
  .quick-links-section {
    padding: 60px 0;
  }

  /* Why Choose Us - Mobile Responsive */
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-feature-card {
    aspect-ratio: 1.1;
    min-height: 180px;
    padding: 24px 16px;
  }

  .why-feature-card .why-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
    margin-bottom: 12px;
  }

  .why-feature-card h4 {
    font-size: 16px;
  }

  .why-feature-card p {
    font-size: 13px;
  }
  /* About Page Mobile Styles */
  .about-hero {
    padding: 120px 0 40px;
  }

  .about-hero .section-title {
    font-size: 28px;
  }

  .about-hero .section-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }

  .about-content {
    padding: 60px 0;
  }

  .about-grid {
    gap: 30px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text h3 {
    font-size: 18px;
  }
  .about-text p {
    font-size: 16px;
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }

  .about-features {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    text-align: center;
    padding: 30px 20px;
  }
  /* Services Page Mobile Styles */
  .services-hero {
    padding: 120px 0 40px;
  }

  .services-hero .section-title {
    font-size: 28px;
  }

  .services-hero .section-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }

  .service-section {
    padding: 60px 0;
  }

  .service-content {
    gap: 30px;
  }

  .service-info h2 {
    font-size: 28px;
  }

  .service-info p {
    font-size: 16px;
    text-align: center;
  }

  .service-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-feature {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .service-feature-icon {
    align-self: center;
    margin-bottom: 12px;
  }

  .service-image img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-text h2 {
    font-size: 20px;
  }
  
  .hero-img {
    margin-top: 40px; /* Smaller margin for mobile */
  }
  
  .service-card h3 {
    font-size: 20px;
  }
  
  .quick-link-card h4 {
    font-size: 18px;
  }
  
  .contactForm {
    padding: 20px 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stat-number {
    font-size: 28px;
  }

  /* Why Choose Us - Small Mobile */
  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-feature-card {
    aspect-ratio: 2.5;
    min-height: 140px;
    padding: 20px 16px;
    flex-direction: row;
    text-align: left;
  }

  .why-feature-card .why-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    margin-bottom: 0;
    margin-right: 16px;
    flex-shrink: 0;
  }

  .why-feature-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .why-feature-card p {
    font-size: 12px;
  }

  .why-choose-text h2 {
    font-size: 24px;
  }

  .quick-link-icon {
    font-size: 36px;
  }

  .quick-link-card h4 {
    font-size: 20px;
  }
  .quick-link-card {
    min-height: 180px;
    padding: 30px 20px;
  }

  .desktopNav {
    width: 100%;
    right: -100%;
    padding: 80px 20px 30px;
  }
  
  .desktopNav a {
    font-size: 18px;
    padding: 18px 0;
  }
  
  .desktopNav .cta-btn {
    font-size: 16px !important;
    padding: 18px !important;
  }

  /* About Page Mobile Styles - Small Screens */
  .about-hero {
    padding: 100px 0 30px;
  }

  .about-hero .section-title {
    font-size: 24px;
  }

  .about-hero .section-subtitle {
    font-size: 16px;
  }

  .about-content {
    padding: 40px 0;
  }

  .about-text h2 {
    font-size: 24px;
  }  .about-text h3 {
    font-size: 16px;
  }

  .about-image img {
    max-width: 85%;
  }

  .about-features {
    padding: 40px 0;
  }

  .feature-card {
    padding: 24px 16px;
  }
  /* Services Page Mobile Styles - Small Screens */
  .services-hero {
    padding: 100px 0 30px;
  }

  .services-hero .section-title {
    font-size: 24px;
  }

  .services-hero .section-subtitle {
    font-size: 16px;
  }

  .service-section {
    padding: 40px 0;
  }

  .service-info h2 {
    font-size: 24px;
  }

  .service-feature {
    padding: 20px 16px;
  }

  .service-image img {
    height: 200px;
  }
}

/* About Page Styles */
.about-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #5cb3e6 100%);
  color: var(--light-color);
  text-align: center;
}

.about-hero .section-title {
  color: var(--light-color);
  margin-bottom: 16px;
}

.about-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.about-content {
  padding: 80px 0;
  background-color: var(--light-color);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.about-text {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--dark-color);
  font-weight: 600;
}

.about-text h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--accent-color);
  font-weight: 500;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
}

.about-image {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.about-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-caption {
  margin-top: 16px;
  font-size: 16px;
  color: #64748b;
  font-style: italic;
}

.about-features {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.feature-card {
  background: var(--light-color);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  height: auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: all 0.2s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.feature-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.about-commitment {
  padding: 80px 0;
  background-color: var(--light-color);
}

.commitment-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.commitment-content h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--dark-color);
  font-weight: 600;
}

.commitment-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
}

.commitment-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.commitment-content a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Services Page Styles */
.services-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff9e7a 100%);
  color: var(--light-color);
  text-align: center;
}

.services-hero .section-title {
  color: var(--light-color);
  margin-bottom: 16px;
}

.services-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.service-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.service-section.alt {
  background-color: #f8fafc;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.service-section.alt .service-content {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.service-info {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.service-info h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--dark-color);
  font-weight: 600;
}

.service-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
  text-align: center;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
}

.service-feature {
  background: var(--light-color);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  height: auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.service-section.alt .service-feature {
  background: #f8fafc;
}

.service-feature:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.service-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: all 0.2s ease;
}

.service-feature:hover .service-feature-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
  transform: scale(1.1);
}

.service-feature h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.service-feature p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.service-image img {
  max-width: 100%;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
  color: var(--light-color);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--light-color);
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Past Jobs Page Styles */
.pastjobs-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  color: var(--light-color);
  text-align: center;
}

.pastjobs-hero .section-title {
  color: var(--light-color);
  margin-bottom: 16px;
}

.pastjobs-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.showcase-section {
  padding: 80px 0;
  background-color: var(--light-color);
  text-align: center;
}

.showcase-description {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
}

.flip-container-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.flip-container {
  width: 500px;
  height: 400px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

.flipper {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  position: relative;
}

.flip-container.flipped .flipper {
  transform: rotateY(180deg);
}

.front,
.back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--light-color);
}

.front {
  z-index: 2;
}

.back {
  transform: rotateY(180deg);
  z-index: 1;
}

.front img,
.back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.flip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--light-color);
  padding: 20px 16px 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.flip-instruction {
  font-size: 16px;
  color: #64748b;
  font-style: italic;
}

.gallery-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  background: var(--light-color);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #cbd5e1;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.modal-content {
  position: relative;
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  top: 50%;
  transform: translateY(-50%);
  animation: modalZoom 0.3s ease-out;
}

@keyframes modalZoom {
  from { transform: translateY(-50%) scale(0.8); opacity: 0; }
  to { transform: translateY(-50%) scale(1); opacity: 1; }
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--light-color);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

#modalCaption {
  color: var(--light-color);
  text-align: center;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
}

/* Click animation for gallery items */
.gallery-item:active {
  transform: translateY(-2px) scale(0.98);
}

/* 404 Error Page Styles */
.error-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
  color: var(--light-color);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-section .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.error-content {
  text-align: left;
}

.error-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
}

.error-title {
  font-size: 120px;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--light-color);
  line-height: 1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.error-subtitle {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--light-color);
  font-weight: 600;
}

.error-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

.error-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.error-link {
  color: var(--light-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.error-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--light-color);
  transition: width 0.3s ease;
}

.error-link:hover::after {
  width: 100%;
}

.error-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-image img {
  max-width: 200px;
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.error-image:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.error-nav-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.error-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.error-nav-card {
  background: var(--light-color);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.error-nav-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.error-nav-icon {
  font-size: 36px;
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

.error-nav-card:hover .error-nav-icon {
  transform: scale(1.1);
}

.error-nav-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-weight: 600;
}

.error-nav-card p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
}

/* Responsive Design for 404 Page */
@media (max-width: 992px) {
  .error-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .error-content {
    text-align: center;
  }
  
  .error-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .error-section {
    padding: 120px 0 60px;
  }
  
  .error-title {
    font-size: 80px;
  }
  
  .error-subtitle {
    font-size: 24px;
  }
  
  .error-actions {
    justify-content: center;
  }
  
  .error-nav-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .error-nav-card {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .error-title {
    font-size: 60px;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .error-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .desktopNav {
    width: 100%;
    right: -100%;
    padding: 80px 20px 30px;
  }
  
  .desktopNav a {
    font-size: 18px;
    padding: 18px 0;
  }
  
  .desktopNav .cta-btn {
    font-size: 16px !important;
    padding: 18px !important;
  }
}

/* Navbar specific CTA button styling */
.desktopNav .cta-btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
}

/* Enhanced mobile navigation links */
  .desktopNav a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
  }  .desktopNav a:hover,
  .desktopNav a:focus {
    color: var(--primary-color);
  }

  /* Enhanced CTA button in mobile menu */
  .desktopNav .cta-btn {
    background: linear-gradient(135deg, var(--accent-color), #ff9e7a) !important;
    color: white !important;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    padding: 20px !important;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255, 127, 80, 0.3);
    border-bottom: none !important;
    font-size: 18px !important;
    letter-spacing: 0.5px;
  }

  .desktopNav .cta-btn:hover,
  .desktopNav .cta-btn:focus {
    background: linear-gradient(135deg, #ff7f4f, var(--accent-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 127, 80, 0.4);
    color: white !important;
    padding-left: 20px !important;
  }
  .desktopNav .cta-btn::before {
    display: none;
  }

  /* Close button for mobile menu - show on mobile */
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    color: var(--dark-color);
    z-index: 1002 !important;
  }

  .mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
  }

  /* Responsive adjustments for smaller mobile screens */
  @media (max-width: 480px) {
    .desktopNav {
      width: 100%;
      right: -100%;
      padding: 80px 20px 30px;
    }
    
    .desktopNav a {
      font-size: 18px;
      padding: 18px 0;
    }
    
    .desktopNav .cta-btn {
      font-size: 16px !important;
      padding: 18px !important;
    }
  }

  /* Very small screens */
  @media (max-width: 360px) {
    .desktopNav {
      padding: 80px 15px 30px;
    }
    
    .mobile-menu-close {
      top: 15px;
      right: 15px;
      width: 44px;
      height: 44px;
      font-size: 20px;
    }
  }