/* App.css for main layout and section styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
}

/* Hero Content 3D Typing Animation */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}

.typing-text {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff6b35; /* Fallback color */
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 
    0 1px 0 #ccc,
    0 2px 0 #c9c9c9,
    0 3px 0 #bbb,
    0 4px 0 #b9b9b9,
    0 5px 0 #aaa,
    0 6px 1px rgba(0,0,0,.1),
    0 0 5px rgba(0,0,0,.1),
    0 1px 3px rgba(0,0,0,.3),
    0 3px 5px rgba(0,0,0,.2),
    0 5px 10px rgba(0,0,0,.25);
  transform: perspective(500px) rotateX(15deg);
  display: inline-block;
  font-family: 'Arial Black', Arial, sans-serif;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
  width: 100%;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .typing-text {
    color: #ff6b35;
    -webkit-text-fill-color: #ff6b35;
  }
}

.cursor {
  color: #ff6b35;
  font-weight: 100;
  animation: blink 1s infinite;
  margin-left: 3px;
  text-shadow: 
    0 0 10px #ff6b35,
    0 0 20px #ff6b35,
    0 0 30px #ff6b35;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 8px 20px rgba(255, 107, 53, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 30px rgba(255, 107, 53, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.hero-btn .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.hero-btn:hover .arrow {
  transform: translateX(5px);
}

/* Enhanced 3D Text Effects */
.typing-text {
  font-family: 'Arial Black', Arial, sans-serif;
  letter-spacing: 2px;
  position: relative;
}

.typing-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: rgba(0,0,0,0.3);
  transform: translate(3px, 3px);
}

/* Scroll Animation Classes */
.animate-in {
  animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Hero Section Background */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Glowing Text Effect */
@keyframes textGlow {
  0%, 100% {
    text-shadow: 
      0 1px 0 #ffffff,
      0 2px 0 #c9c9c9,
      0 3px 0 #bbb,
      0 4px 0 #ffffff,
      0 5px 0 #aaa,
      0 6px 1px rgba(0,0,0,.1),
      0 0 5px rgba(255, 255, 255, 0.3),
      0 1px 3px rgba(0,0,0,.3),
      0 3px 5px rgba(0,0,0,.2),
      0 5px 10px rgba(0,0,0,.25);
  }
  50% {
    text-shadow: 
      0 1px 0 #ccc,
      0 2px 0 #ffffff,
      0 3px 0 #bbb,
      0 4px 0 #ffffff,
      0 5px 0 #aaa,
      0 6px 1px rgba(0,0,0,.1),
      0 0 15px rgba(255, 255, 255, 0.6),
      0 1px 3px rgba(0,0,0,.3),
      0 3px 5px rgba(0,0,0,.2),
      0 5px 10px rgba(0,0,0,.25);
  }
}

.typing-text {
  animation: gradientShift 3s ease-in-out infinite, textGlow 2s ease-in-out infinite;
}

/* Mobile Responsive for Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    min-height: 140px;
  }
  
  .hero-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
  
  .typing-text {
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
    min-height: 120px;
  }
  
  .hero-content {
    width: 95%;
  }
  
  .typing-text {
    letter-spacing: 0.5px;
    line-height: 1.3;
  }
}

/* Navigation Bar Styles */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(43, 43, 43, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 70px;
}

.nav-logo img {
  height: 65px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #e65100;
  background: rgba(230, 81, 0, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #e65100;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 30px;
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 15px 30px;
  }
}
/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('images/hero-bg.jpg') center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 70px; /* Space for fixed navigation */
}
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(40,40,40,0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  z-index: 10;
}
.hero-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
}
.hero-logo img {
  height: 65px;
}
.hero-menu {
  font-size: 2.2rem;
  cursor: pointer;
}
.hero-social {
  position: absolute;
  left: 24px;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
}
.hero-social img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.2);
  transition: filter 0.2s, transform 0.2s;
}
.hero-social img:hover {
  filter: none;
  transform: scale(1.1);
}
.hero-content {
  text-align: left;
  color: #fff;
  max-width: 700px;
  margin-top: -200px;
  margin-left: 80px;
  animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-content h1 {
  font-size: 5.7rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  line-height: 1.1;
}
.hero-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #ff6a00;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 32px;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.3s, color 0.3s, border 0.3s;
  position: relative;
}
.hero-btn .arrow {
  margin-left: 12px;
  font-size: 1.3em;
}
.hero-btn:hover {
  background: #ff6a00;
  color: #fff;
  border-color: #fff;
}
.hero-scroll {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  z-index: 10;
}
.hero-scroll .scroll-arrow {
  font-size: 2.2rem;
  margin-top: 8px;
}
.hero-contact {
  position: absolute;
  right: 32px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
}
.hero-contact img {
  width: 32px;
  height: 32px;
}
.hero-slider-nav {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-slider-nav button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-slider-nav button:hover {
  background: #ff6a00;
}
.hero-float-btn {
  position: absolute;
  right: 32px;
  bottom: 32px;
  background: #ff6a00;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
/* Scroll Up Button Styles */
.scroll-up-btn {
  position: fixed;
  left: 32px;
  bottom: 32px;
  z-index: 100;
  cursor: pointer;
  transition: transform 0.2s;
}
.scroll-up-btn:hover {
  transform: scale(1.08);
}
.scroll-up-btn svg {
  display: block;
}

/* Projects Section Styles */
.projects-section {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-header {
  text-align: center;
  margin-bottom: 48px;
}

.projects-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #bdbdbd;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.projects-subtitle {
  font-size: 1.2rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 0;
}

/* Projects Categories Styles */
.projects-categories {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.category {
  background: none;
  border: none;
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.category.active {
  color: #e65100;
  border-bottom: 3px solid #e65100;
}

.category-icon {
  font-size: 1.2em;
  margin-right: 4px;
}

.category:hover {
  color: #e65100;
  transform: translateY(-2px);
}

/* Projects List Grid */
.projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Project Card Styles */
.project-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.20);
}

/* Project Image Wrap Styles */
.project-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.1);
}

/* Project Overlay Styles */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 40px 24px 24px;
  transform: translateY(100%);
  transition: all 0.4s ease;
  opacity: 0;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.project-overlay p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .project-card {
    height: 280px;
  }
  
  .projects-categories {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 20px;
  }
  
  .category {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .projects-main-title {
    font-size: 2.5rem;
  }
}
/* Services Section Styles */
.services-section {
  background: #f8f8f8;
  padding: 80px 0;
  position: relative;
}

.services-header {
  text-align: center;
  position: relative;
  z-index: 10;
}

.services-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #e65100;
}

.services-main-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #888;
  margin: 0 0 8px 0;
}

.services-subtitle {
  font-size: 1.25rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 32px;
}

/* Stack Container */
.services-stack-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 400vh; /* Create scroll space for stacking effect */
}

/* Stacked Service Cards */
.service-card-stack {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  padding: 48px 32px;
  gap: 48px;
  height: 400px;
  margin-bottom: 20px;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  will-change: transform, opacity, z-index;
}

/* Initial stacking positions */
.service-card-stack[data-index="0"] { z-index: 7; }
.service-card-stack[data-index="1"] { z-index: 6; }
.service-card-stack[data-index="2"] { z-index: 5; }
.service-card-stack[data-index="3"] { z-index: 4; }
.service-card-stack[data-index="4"] { z-index: 3; }
.service-card-stack[data-index="5"] { z-index: 2; }
.service-card-stack[data-index="6"] { z-index: 1; }

/* Active states for stacked cards */
.service-card-stack.stacked {
  transform: scale(0.95) translateY(15px);
  opacity: 0.8;
}

.service-card-stack.fully-stacked {
  transform: scale(0.9) translateY(25px);
  opacity: 0.6;
}

/* Service Info Styles */
.service-info {
  flex: 1;
  text-align: left;
  padding-right: 24px;
}

.service-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #333;
  line-height: 1.2;
}

.service-info p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.service-readmore {
  display: inline-block;
  background: #e65100;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-readmore:hover {
  background: #ff7043;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}

/* Service Image Styles */
.service-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
}

.service-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.service-card-stack:hover .service-image img {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Hover Effects for Stacked Cards */
.service-card-stack:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,0.25);
  transform: translateY(-8px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 32px 0;
  }
  
  .services-header {
    padding: 0 20px;
    margin-bottom: 32px;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .services-main-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
  
  .services-overlay {
    display: none; /* Hide overlay image on mobile for better performance */
  }
  
  .services-stack-container {
    height: auto; /* Remove fixed height on mobile */
    padding: 0 16px;
  }
  
  .service-card-stack {
    position: relative; /* Remove sticky positioning on mobile */
    top: auto;
    flex-direction: column;
    text-align: center;
    height: auto;
    min-height: auto;
    padding: 24px 20px;
    gap: 24px;
    margin-bottom: 24px;
    transform: none !important; /* Reset transforms on mobile */
    opacity: 1 !important; /* Reset opacity on mobile */
  }
  
  .service-info,
  .service-image {
    padding: 0;
    flex: none;
  }
  
  .service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .service-info p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .service-image img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

.service-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.about-overlay {
  position: absolute;

 
}
/* About Section Flex Layout */
.about-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  max-width: 1400px;
  padding: 20px;
}
.about-header-left {
  flex: 1;
  min-width: 320px;
  text-align: left;
}
.about-label {
  color: #e65100;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.about-title {
  font-size: 4rem;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 8px;
}
.about-desc {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 16px;
  max-width: 600px;
}
.about-readmore {
  display: inline-block;
  margin-bottom: 16px;
  background: none;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}
.about-readmore .arrow {
  margin-left: 8px;
  font-size: 1.2em;
}
.about-readmore:hover {
  color: #e65100;
}
.about-header-right {
  flex: 1;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.about-social-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-social-follow {
  text-align: center;
  margin-top: 12px;
}
.about-social-follow-btn {
  background: #fff;
  color: #e65100;
  border: 2px solid #e65100;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 18px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.about-social-follow-btn:hover {
  background: #e65100;
  color: #fff;
}
/* About Section Styles */
.about-section {
  padding: 60px 0;
  background: #fff;
}

/* Chairman Section Styles */
.chairman-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin: 64px 0 32px 0;
  padding: 60px 20px;
  background: #f8f9fa;
}

.chairman-info {
  flex: 1;
  min-width: 0;
}

.chairman-info h3 {
  color: #e65100;
  font-weight: 600;
  margin-bottom: 8px;
}

.chairman-info h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #bdbdbd;
  line-height: 1.1;
  margin-bottom: 16px;
}

.chairman-description {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
}

.chairman-description p {
  margin-bottom: 16px;
}

.chairman-signature {
  margin-top: 16px;
}

.chairman-signature span {
  font-family: 'Pacifico', cursive;
  font-size: 1.3rem;
  color: #2196f3;
}

.chairman-photo {
  flex: 0 0 400px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chairman-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
    margin-top: 80px;
    max-width: 98vw;
    padding: 0 12px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-nav {
    flex-direction: column;
    height: auto;
    padding: 8px;
  }
  .hero-social, .hero-contact, .hero-slider-nav, .hero-float-btn, .hero-scroll {
    right: 8px;
    left: 8px;
    top: unset;
    bottom: 8px;
  }
  .service-card-large {
    flex-direction: column;
    padding: 24px 8px;
    gap: 16px;
  }
  .service-image img {
    max-width: 98vw;
  }
  .about-header-flex {
    flex-direction: column;
    gap: 24px;
    padding: 16px;
    max-width: 100%;
  }
  .about-title {
    font-size: 2.2rem;
  }
  .about-header-right {
    min-width: unset;
    width: 100%;
  }
  .about-overlay {
    position: relative;
    margin-top: 20px;
  }
  .about-overlay img {
    max-width: 200px;
    height: auto;
  }
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-label {
  color: #e65100;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e65100;
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: #e65100;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: #d55a00;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

/* Contact Information Styles */
.contact-info-wrapper {
  padding: 20px 0;
}

.contact-info-wrapper h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(230, 81, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.contact-details a {
  color: #e65100;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #d55a00;
}

/* Quick Contact Buttons */
.quick-contact {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.phone-btn {
  background: #e65100;
  color: #fff;
}

.phone-btn:hover {
  background: #d55a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #20c157;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* About Section Mobile */
  .about-section {
    padding: 40px 0;
  }
  
  .about-header-flex {
    padding: 0 16px;
  }
  
  .about-label {
    font-size: 1rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-desc {
    font-size: 1rem;
  }
  
  .about-header-right .about-social-card img {
    height: 300px !important;
    width: 100%;
    object-fit: cover;
  }
  
  /* Chairman Section Mobile */
  .chairman-section {
    flex-direction: column !important;
    align-items: center !important;
    padding: 40px 16px !important;
    gap: 32px !important;
    margin: 32px 0 !important;
  }
  
  .chairman-info {
    flex: none !important;
    width: 100% !important;
    min-width: auto !important;
    text-align: center !important;
  }
  
  .chairman-info h3 {
    font-size: 1rem !important;
  }
  
  .chairman-info h1 {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }
  
  .chairman-info div {
    font-size: 0.95rem !important;
  }
  
  .chairman-info div p {
    margin-bottom: 16px !important;
  }
  
  .chairman-photo {
    flex: none !important;
    max-width: 280px !important;
    width: 100% !important;
    order: -1; /* Show photo first on mobile */
  }
  
  .chairman-photo img {
    width: 100% !important;
    max-width: 280px !important;
    border-radius: 12px !important;
  }
  
  /* Contact Section Mobile */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .quick-contact {
    flex-direction: column;
  }
  
  .contact-info-item {
    padding: 15px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
}

/* Voice Recording Styles */
.voice-recording-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 2px dashed #e0e0e0;
  transition: all 0.3s ease;
}

.voice-recording-section:hover {
  border-color: #e65100;
  background: #fff8f5;
}

.voice-recorder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recording-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.voice-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.record-btn {
  background: linear-gradient(45deg, #e65100, #ff7043);
  color: white;
}

.record-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #d84315, #e65100);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.record-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.stop-btn {
  background: linear-gradient(45deg, #f44336, #e57373);
  color: white;
}

.stop-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #d32f2f, #f44336);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.play-btn {
  background: linear-gradient(45deg, #4caf50, #81c784);
  color: white;
}

.play-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #388e3c, #4caf50);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.delete-btn {
  background: linear-gradient(45deg, #757575, #9e9e9e);
  color: white;
}

.delete-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #616161, #757575);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(117, 117, 117, 0.3);
}

.voice-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.recording-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.timer {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e65100;
  font-family: 'Courier New', monospace;
}

.recording-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff0000;
  opacity: 0;
  animation: pulse 1s infinite;
}

.recording-indicator.active {
  opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.audio-visualizer {
  display: flex;
  justify-content: center;
  background: #000;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
}

#visualizerCanvas {
  border-radius: 4px;
  background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
}

/* Mobile Responsive for Voice Recorder */
@media (max-width: 768px) {
  .recording-controls {
    justify-content: center;
  }
  
  .voice-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  
  .voice-btn svg {
    width: 16px;
    height: 16px;
  }
  
  #visualizerCanvas {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .recording-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .voice-btn {
    width: 200px;
    justify-content: center;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .services-main-title {
    font-size: 1.8rem;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .chairman-info h1 {
    font-size: 1.6rem !important;
  }
  
  .service-card-stack {
    padding: 20px 16px;
    margin-bottom: 20px;
  }
  
  .service-info h2 {
    font-size: 1.5rem;
  }
  
  .services-stack-container {
    padding: 0 12px;
  }
  
  .about-header-flex {
    padding: 0 12px;
  }
  
  .chairman-section {
    padding: 32px 12px !important;
  }
}
