/* ================================
   SLN Engineering Works - Clean & Professional Stylesheet
   ================================ */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 11px;
  width: 100%;
}

/* ================================
   Navigation
   ================================ */
.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 11px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 105px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 15px;
  display: block;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(0, 123, 255, 0.08);
  color: #007bff;
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.nav-links a.active::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ================================
   Hero Section
   ================================ */
.hero {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.95) 0%, rgba(42, 82, 152, 0.92) 50%, rgba(0, 123, 255, 0.90) 100%),
              url('https://5.imimg.com/data5/SELLER/Default/2021/1/YE/PC/SC/9232601/cnc-lathe-machine.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 100px 11px 80px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0.02) 70%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0.02) 70%, transparent 70%);
  background-size: 60px 60px;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 20px;
  font-weight: 600;
  opacity: 0.95;
  line-height: 1.4;
}

.hero-description {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.highlight {
  background: linear-gradient(90deg, #28a745, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: #fff;
  color: #007bff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background-color: #fff;
  color: #007bff;
  border-color: #007bff;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
}

.btn-light {
  background-color: #fff;
  color: #1e3c72;
  border-color: #fff;
  font-weight: 700;
}

.btn-light:hover {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 255, 255, 0.4);
}

.btn-full {
  width: 100%;
}

/* ================================
   Sections
   ================================ */
.section {
  padding: 50px 11px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  color: #1e3c72;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: clamp(16px, 2vw, 20px);
  color: #6c757d;
  line-height: 1.8;
  margin-top: 24px;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.section-intro h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: #1e3c72;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.section-intro p {
  font-size: clamp(16px, 2vw, 18px);
  color: #6c757d;
  line-height: 1.8;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745);
  margin: 20px auto;
  border-radius: 2px;
}

.bg-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 249, 250, 0.95) 50%, rgba(255, 255, 255, 0.97) 100%),
              url('/images/cnc-lathe-machine.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.text-center {
  text-align: center;
}

/* ================================
   Content Grid
   ================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.content-text {
  padding: 20px 0;
}

.content-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  color: #1e3c72;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.content-text p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #495057;
  font-size: clamp(15px, 1.5vw, 17px);
  text-align: justify;
}

.content-text .btn {
  margin-top: 20px;
}

.content-image {
  position: relative;
}

.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border: 3px solid #f8f9fa;
}

.image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.3);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.showcase-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.2);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

/* ================================
   About Section
   ================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 80px;
  margin: 20px auto;
  max-width: 1320px;
  align-items: center;
}

.about-intro-content {
  padding: 20px 0;
  flex-shrink: 0;
  margin-top: 40px;
}

.about-intro-image {
  position: relative;
  width: 650px;
  flex-shrink: 0;
  justify-self: end;
  margin-top: 40px;
  margin-right: -30px;
}

/* Machinery Slideshow */
.machinery-slideshow {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0, 123, 255, 0.25), 0 5px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 4px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s ease;
}

.machinery-slideshow::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(135deg, #007bff, #28a745, #007bff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0.6;
}

.machinery-slideshow:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 80px rgba(0, 123, 255, 0.3), 0 8px 30px rgba(0, 0, 0, 0.15);
}

.machinery-slideshow:hover::before {
  opacity: 1;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.slide:hover img {
  transform: scale(1.02);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 123, 255, 0.95) 0%, rgba(0, 123, 255, 0.85) 50%, transparent 100%);
  color: #fff;
  padding: 28px 24px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.slideshow-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0.98), rgba(255, 255, 255, 0.98));
  border-top: 2px solid rgba(0, 123, 255, 0.15);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.indicator:hover {
  background: linear-gradient(135deg, #007bff, #0056b3);
  transform: scale(1.3);
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.4);
}

.indicator.active {
  background: linear-gradient(135deg, #007bff, #28a745);
  width: 40px;
  border-radius: 6px;
  border-color: rgba(0, 123, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
}

.about-intro-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 28px;
  color: #1e3c72;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.about-intro-content .divider {
  margin-left: 75px;
  margin-right: auto;
}

.about-intro-content .lead-text {
  font-size: clamp(16px, 2vw, 19px);
  color: #007bff;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #007bff;
}

.about-intro-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #495057;
  font-size: clamp(15px, 1.5vw, 17px);
  text-align: justify;
}

.about-intro-image {
  position: relative;
}

.highlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background: linear-gradient(135deg, #007bff, #0056b3);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.4);
}

.stat-number {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

/* ================================
   Service Cards
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #28a745);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.2);
  background: #ffffff;
}

.service-card h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 18px;
  color: #1e3c72;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  color: #6c757d;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  margin: 0;
}

.service-icon {
  display: none;
}

/* ================================
   Service Detail Cards
   ================================ */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #28a745;
  transition: all 0.4s ease;
  align-items: center;
}

.service-detail-card:hover {
  box-shadow: 0 12px 45px rgba(0, 123, 255, 0.15);
  transform: translateY(-5px);
  border-left-color: #007bff;
}

.service-image {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail-card:hover .service-image::after {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-detail-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 10px 0;
}

.service-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
  color: #1e3c72;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.service-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #495057;
  font-size: clamp(15px, 1.5vw, 17px);
}

.service-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.service-content ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #495057;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: #28a745;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
}

.service-content ul li:hover {
  padding-left: 36px;
  color: #1e3c72;
}

/* ================================
   Info Cards
   ================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 50px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #007bff;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 123, 255, 0.15);
  border-left-color: #28a745;
}

.info-card h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 18px;
  color: #1e3c72;
  font-weight: 700;
  line-height: 1.3;
}

.info-card p {
  color: #6c757d;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  margin: 0;
}

/* ================================
   Features Grid
   ================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 50px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 30px 25px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 123, 255, 0.15);
  border-top-color: #007bff;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #28a745, #20c997);
}

.feature-item > div {
  flex: 1;
}

.feature-item h4 {
  margin-bottom: 10px;
  color: #1e3c72;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

.feature-item p {
  color: #6c757d;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  margin: 0;
}

/* ================================
   Industries Grid
   ================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 50px auto;
  max-width: 1200px;
}

.industry-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.3);
  background: #ffffff;
}

.industry-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #1e3c72;
  font-weight: 700;
  line-height: 1.3;
}

.industry-card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ================================
   Machinery Showcase
   ================================ */
.machinery-showcase {
  margin: 50px 0;
}

.machinery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1320px;
  margin: 0 auto;
}

.machinery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: #fff;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.machinery-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.3);
}

.machinery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.machinery-item:hover img {
  transform: scale(1.08);
}

.machinery-info {
  padding: 25px 20px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.machinery-info h4 {
  color: #1e3c72;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.machinery-info p {
  color: #6c757d;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.6;
  margin: 0;
}

/* Legacy overlay styles (kept for backwards compatibility) */
.machinery-overlay {
  display: none;
}

/* ================================
   Infrastructure Grid
   ================================ */
.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  margin: 50px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.equipment-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.equipment-card:hover {
  box-shadow: 0 12px 45px rgba(0, 123, 255, 0.15);
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.2);
}

.equipment-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #ffffff;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.15);
}

.equipment-info {
  padding: 30px 25px;
}

.equipment-info h4 {
  color: #1e3c72;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.equipment-info p {
  color: #6c757d;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  margin: 0;
}

/* ================================
   Partners Section
   ================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 50px 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.partner-logo:hover {
  box-shadow: 0 10px 35px rgba(0, 123, 255, 0.15);
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.2);
}

.partner-logo img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(20%);
}

.partner-logo:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* ================================
   Capabilities Section
   ================================ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.capability-item {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.capability-item:hover {
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.15);
  transform: translateY(-10px);
  border-color: rgba(0, 123, 255, 0.2);
}

.capability-number {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 800;
  background: linear-gradient(135deg, #007bff, #28a745);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.capability-item h4 {
  color: #1e3c72;
  font-size: clamp(17px, 2vw, 21px);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.capability-item p {
  color: #6c757d;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  margin: 0;
}

/* ================================
   Contact Section
   ================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 50px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
  color: #1e3c72;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.contact-info .divider,
.contact-form-wrapper .divider {
  margin-left: 80px;
  margin-right: auto;
}

.contact-info > p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  margin-bottom: 0;
  padding: 28px 24px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 14px;
  border-left: 5px solid #007bff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 30px rgba(0, 123, 255, 0.15);
  border-left-color: #28a745;
}

.contact-text h4 {
  color: #1e3c72;
  margin-bottom: 12px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

.contact-text p {
  color: #495057;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  margin: 0;
}

.contact-text a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 45px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #28a745;
}

.contact-form {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #2c3e50;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd;
}

/* Map Container */
.map-container {
  margin-top: 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
}

.map-container:hover {
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.2);
  transform: translateY(-3px);
}

.map-container iframe {
  display: block;
  width: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 10;
  border-left: 5px solid #28a745;
}

.map-info h4 {
  color: #1e3c72;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 12px;
  font-weight: 700;
}

.map-info p {
  color: #495057;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  margin: 0;
}

/* ================================
   Page Header
   ================================ */
.page-header {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.93) 0%, rgba(42, 82, 152, 0.90) 50%, rgba(0, 123, 255, 0.88) 100%),
              url('/images/vertical-turret-milling-machine.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 30px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0.02) 70%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0.02) 70%, transparent 70%);
  background-size: 60px 60px;
  opacity: 0.3;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: clamp(16px, 2.5vw, 22px);
  position: relative;
  z-index: 2;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ================================
   Call to Action
   ================================ */
.cta {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.94) 0%, rgba(42, 82, 152, 0.92) 50%, rgba(0, 123, 255, 0.90) 100%),
              url('/images/external-cylindrical-grinder.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 90px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta p {
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

/* ================================
   Footer
   ================================ */
.footer {
  background: linear-gradient(135deg, #3b5998 0%, #4a6fb8 100%);
  color: #fff;
  padding: 70px 0 25px;
  margin-top: 100px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #28a745, #007bff, #28a745);
}

.footer .container {
  max-width: 1320px;
}

.footer-content {
  display: grid;
  grid-template-columns: 350px 200px 1fr;
  gap: 80px;
  margin-bottom: 50px;
  align-items: start;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section:nth-child(2) {
  margin-left: 120px;
  text-align: center;
}

.footer-section:nth-child(2) h3 {
  white-space: nowrap;
  margin-left: 10px;
  position: relative;
  display: inline-block;
}

.footer-section:nth-child(2) h3::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.footer-section:nth-child(3) h3 {
  position: relative;
  display: inline-block;
}

.footer-section:nth-child(3) h3::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.footer-section:nth-child(2) ul {
  display: inline-block;
  text-align: center;
  margin-left: 30px;
}

.footer-section:nth-child(2) ul li {
  text-align: center;
}

.footer-section:nth-child(2) ul li a {
  display: inline-block;
  padding-left: 0 !important;
  white-space: nowrap;
}

.footer-section:nth-child(2) ul li a::before {
  display: none;
}

.footer-section:nth-child(3) {
  margin-left: auto;
  padding-left: 40px;
}

.footer-section h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #007bff);
  border-radius: 2px;
}

.footer-section p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.footer-section:first-child p {
  font-size: 18px;
  line-height: 1.9;
}

.footer-logo {
  max-width: 280px;
  height: auto;
  display: block;
  margin-top: -90px;
  margin-bottom: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.2);
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.4);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
  position: relative;
  padding-left: 0;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #28a745;
}

.footer-section ul li a:hover {
  color: #28a745;
  padding-left: 20px;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ================================
   Scroll to Top Button
   ================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  font-weight: bold;
}

.scroll-to-top.visible {
  display: flex;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #28a745, #20c997);
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(40, 167, 69, 0.5);
}

/* ================================
   Notification System
   ================================ */
.notification {
  position: fixed;
  top: 30px;
  right: -450px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transition: right 0.5s ease;
  min-width: 320px;
  max-width: 420px;
  border-left: 5px solid;
}

.notification.show {
  right: 30px;
}

.notification.success {
  border-left-color: #28a745;
}

.notification.error {
  border-left-color: #dc3545;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }
  
  .nav-wrapper {
    padding: 0 25px;
  }
  
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-image {
    height: 300px;
  }
  
  .content-grid,
  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro-content {
    width: 100%;
  }

  .about-intro-image {
    width: 100%;
    max-width: 100%;
    justify-self: center;
    margin-right: 0;
  }

  .slideshow-container {
    height: 320px;
  }
  
  .services-grid,
  .machinery-grid,
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .nav-wrapper {
    padding: 0 20px;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 99px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 99px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    transition: left 0.4s ease;
    gap: 8px;
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
  }
  
  .hero {
    padding: 70px 20px 60px;
    min-height: 400px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-intro {
    margin-bottom: 30px !important;
  }
  
  .services-grid,
  .machinery-grid,
  .capabilities-grid,
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
  
  .service-detail-card {
    grid-template-columns: 1fr !important;
    padding: 30px 20px !important;
  }
  
  .service-image {
    height: 250px !important;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 35px 25px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 100%;
  }
  
  .industry-card {
    padding: 35px 22px;
    min-height: 160px;
  }
  
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    text-align: center !important;
    max-width: 100% !important;
  }
  
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: center !important;
  }
  
  .footer-section:nth-child(2) h3,
  .footer-section:nth-child(3) h3 {
    margin-left: 0 !important;
    display: block !important;
  }
  
  .footer-section:nth-child(2) ul {
    margin-left: 0 !important;
  }
  
  .footer-section h3::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .footer-logo {
    margin: 0 auto 20px;
  }
  
  .footer-section ul li a::before {
    display: none;
  }
  
  .footer-section ul li a:hover {
    padding-left: 0;
  }
  
  .map-overlay {
    position: static;
    max-width: 100%;
    margin: 20px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .nav-wrapper {
    padding: 0 16px;
  }
  
  .logo img {
    height: 65px;
  }
  
  .hero {
    padding: 60px 16px 50px;
    min-height: 350px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 50px 16px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-detail-card {
    padding: 30px 20px;
  }
  
  .service-image {
    height: 250px;
  }

  .slideshow-container {
    height: 280px;
  }

  .slide {
    padding: 20px;
  }

  .slide-caption {
    font-size: 15px;
    padding: 18px 16px;
  }

  .slideshow-indicators {
    gap: 10px;
    padding: 15px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 32px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .industry-card {
    padding: 32px 22px;
    min-height: 140px;
  }
  
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }
  
  .image-showcase {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Print Styles
   ================================ */
@media print {
  .navbar,
  .footer,
  .btn,
  .mobile-menu-btn,
  .scroll-to-top {
    display: none !important;
  }
  
  .hero,
  .cta {
    background: #fff !important;
    color: #000 !important;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* ================================
   Animation Classes
   ================================ */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.fade-in {
  opacity: 1;
  transform: translateY(0);
}

body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}
